Skip to content

Commit d226192

Browse files
committed
Remove debugging
1 parent db7f896 commit d226192

File tree

1 file changed

+1
-2
lines changed
  • src/apps/wallet-admin/src/lib/services

1 file changed

+1
-2
lines changed

src/apps/wallet-admin/src/lib/services/wallet.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,11 @@ export async function editPayment(updates: {
7979
}): Promise<string> {
8080
const body = JSON.stringify(updates)
8181
const url = `${baseUrl}/admin/winnings`
82-
82+
8383
const response = await xhrPatchAsync<string, ApiResponse<string>>(url, body)
8484

8585
if (response.status === 'error') {
8686
if (response.error && response.error.message) {
87-
console.log(response.error.message)
8887
throw new Error(response.error.message)
8988
}
9089
throw new Error('Error editing payment')

0 commit comments

Comments
 (0)