Skip to content

Commit

Permalink
Merge branch 'feat/small-sign' into tmp/20240823
Browse files Browse the repository at this point in the history
  • Loading branch information
cs1707 committed Aug 23, 2024
2 parents 191f9b5 + d442666 commit 3af735b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/background/service/customTestnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ const createClientByChain = (chain: TestnetChainBase) => {
},
},
}),
transport: http(chain.rpcUrl),
transport: http(chain.rpcUrl, { timeout: 300000 }),
});
};

Expand Down
8 changes: 4 additions & 4 deletions src/ui/views/Bridge/Component/BridgeContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -648,10 +648,10 @@ export const BridgeContent = () => {
setTimeout(() => {
setIsShowSign(false);
// setPayAmount('');
setTimeout(() => {
history.replace('/');
}, 500);
}, 1000);
// setTimeout(() => {
history.replace('/');
// }, 500);
}, 500);
}}
/>
</div>
Expand Down
8 changes: 4 additions & 4 deletions src/ui/views/Swap/Component/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -744,10 +744,10 @@ export const Main = () => {
setTimeout(() => {
setIsShowSign(false);
// setPayAmount('');
setTimeout(() => {
history.replace('/');
}, 500);
}, 1000);
// setTimeout(() => {
history.replace('/');
// }, 500);
}, 500);
}}
/>
</div>
Expand Down

0 comments on commit 3af735b

Please sign in to comment.