Skip to content

Commit

Permalink
fix: disable bnb network option on uniwallet
Browse files Browse the repository at this point in the history
  • Loading branch information
JFrankfurt committed Apr 26, 2023
1 parent 3d8d29f commit 74fce29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/NavBar/ChainSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const ChainSelector = ({ leftAlign }: ChainSelectorProps) => {
<Column paddingX="8">
{NETWORK_SELECTOR_CHAINS.map((chainId: SupportedChainId) => (
<ChainSelectorRow
disabled={isUniWallet && chainId === SupportedChainId.CELO}
disabled={isUniWallet && [SupportedChainId.CELO, SupportedChainId.BNB].includes(chainId)}
onSelectChain={onSelectChain}
targetChain={chainId}
key={chainId}
Expand Down

0 comments on commit 74fce29

Please sign in to comment.