-
Notifications
You must be signed in to change notification settings - Fork 21
Merge in AI changes to this branch #1306
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
a39a297
a08b4da
090a9fa
aeaded4
7d2c9f9
d920ef4
51e8773
b77f2eb
a0e285b
a017b1d
d26a7f0
419163e
6f9bb56
1fc2ecd
7b7d7b7
a6d033a
53baf43
8f36483
b9fe4ff
ca1e432
52a803c
c819bdf
f448252
1365c0e
6c92684
9aef27f
064dbc7
fc857e8
a2c3252
3e38b26
f232dfd
5c69dd9
f904736
a67129b
6b054cf
5f34220
c624467
cbc0120
b4f607e
67cd8cc
4f63f3b
9c25b0c
2e7c888
8e53f50
dbd3a51
ec25968
6abe321
5dbb05d
83019ed
38e15cd
acfc2b4
ca933dc
f3c3fa8
2410959
45f9452
7b8dfb2
c4c0b48
6bc9ece
e8788eb
a52e1ea
60a5f17
03bd0fd
5060ce1
8d39e37
8582c09
c958bd7
9a77c85
ff9432d
3f5ee69
0b46c0f
386af7d
6251eae
e1dc7fd
e4fd2df
6916164
8de38c5
aa97f02
c213504
e35179f
be10e19
2b428d0
cf5bb7a
6544d15
9a11080
bd29900
a4a8626
44f5417
54792d7
50b3167
0f02920
2fb844a
e1d150c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -40,12 +40,12 @@ export async function getChallengePayments( | |
| challengeId: string, | ||
| ): Promise<ChallengePaymentsResponse> { | ||
| return xhrGetAsync<ChallengePaymentsResponse>( | ||
| `${EnvironmentConfig.API.V6}/payments/challenges/${challengeId}`, | ||
| `${EnvironmentConfig.API.V6}/finance/challenge-payments/${challengeId}`, | ||
| ) | ||
| } | ||
|
|
||
| export async function createWinning(payload: any): Promise<unknown> { | ||
| return xhrPostAsync(`${EnvironmentConfig.API.V5}/finance/winnings`, payload) | ||
| return xhrPostAsync(`${EnvironmentConfig.API.V6}/finance/winnings`, payload) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [❗❗ |
||
| } | ||
|
|
||
| export async function autocompleteMembers(term: string): Promise<Array<{ handle: string }>> { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[❗❗
correctness]The endpoint URL has been changed from
/payments/challenges/to/finance/challenge-payments/. Ensure that the new endpoint is correct and that the backend service supports this path, as this could lead to a runtime error if the endpoint does not exist.