Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dmy147 committed Jan 15, 2025
1 parent 9cc9cfe commit 91e0aa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ui/views/Bridge/Component/BridgeContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ export const BridgeContent = () => {
if (
!toToken?.low_credit_score &&
!toToken?.is_scam &&
toToken?.is_verified &&
receiveToken?.is_verified !== false &&
!isSlippageHigh &&
!isSlippageLow &&
[
Expand Down
2 changes: 1 addition & 1 deletion src/ui/views/Swap/Component/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ export const Main = () => {
].includes((currentAccount?.type || '') as any) &&
!receiveToken?.low_credit_score &&
!receiveToken?.is_scam &&
receiveToken?.is_verified &&
receiveToken?.is_verified !== false &&
!isSlippageHigh &&
!isSlippageLow &&
!showLoss
Expand Down

0 comments on commit 91e0aa8

Please sign in to comment.