Skip to content

Commit

Permalink
fix: syntactic shenanigans
Browse files Browse the repository at this point in the history
  • Loading branch information
gomesalexandre committed Oct 10, 2023
1 parent ee38725 commit 76c9599
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/context/WalletProvider/Ledger/components/Chains.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ export const LedgerChains = () => {
onClick={() => handleConnectClick(asset.chainId)}
colorScheme={walletChainIds.includes(asset.chainId) ? 'green' : 'gray'}
isDisabled={walletChainIds.includes(asset.chainId)}
leftIcon: walletChainIds.includes(asset.chainId) ? <CheckCircleIcon /> : undefined
leftIcon={
walletChainIds.includes(asset.chainId) ? <CheckCircleIcon /> : undefined
}
>
{walletChainIds.includes(asset.chainId) ? 'Added' : 'Connect'}
</Button>
Expand Down

0 comments on commit 76c9599

Please sign in to comment.