Skip to content

Commit

Permalink
fix: Comparisson
Browse files Browse the repository at this point in the history
  • Loading branch information
LautaroPetaccio committed Mar 13, 2024
1 parent 447b56c commit e7263e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const BuyWithCryptoModal = (props: Props) => {

const chainNativeToken = useMemo(() => {
return providerTokens.find(
t => +t.chainId.toString() === selectedChain.toString() && t.symbol === selectedProviderChain?.nativeCurrency.symbol
t => t.chainId.toString() === selectedChain.toString() && t.symbol === selectedProviderChain?.nativeCurrency.symbol
)
}, [selectedChain, selectedProviderChain, providerTokens])

Expand Down

0 comments on commit e7263e5

Please sign in to comment.