Skip to content

Commit

Permalink
fix: fix override.
Browse files Browse the repository at this point in the history
  • Loading branch information
richardo2016x committed Jul 26, 2024
1 parent 04a34e7 commit dbe1c0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/views/ApprovalManagePage/useApprovalsPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ export function useApprovalsPage(options?: { isTestnet?: boolean }) {

const tokenAuthorizedQueryList = usedChainList.map((e) => async () => {
try {
const data = await openapiClient.tokenAuthorizedList(userAddress, e.id);
const data = await openapiClient.tokenAuthorizedList(userAddress, e.id, { restfulPrefix: 'v2' });
if (data.length) {
data.forEach((token) => {
token.spenders.forEach((spender) => {
Expand Down

0 comments on commit dbe1c0a

Please sign in to comment.