Skip to content

Commit

Permalink
show super tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
MohammadPCh committed Nov 29, 2023
1 parent 6f33d5b commit a73f075
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions src/components/views/donate/SelectTokenModal/SelectTokenModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,27 +155,27 @@ const SelectTokenInnerModal: FC<ISelectTokenModalProps> = ({
/>
);
})}
{/* {allTokens.map(token =>
tokenStreams[token.id] ? null : (
<TokenInfo
key={token.symbol}
token={token}
balance={balances[token.symbol]}
disable={
!balances[token.symbol] ||
balances[token.symbol] === 0n
}
isSuperToken={true}
onClick={() => {
setSelectedToken({
token,
balance: balances[token.symbol],
});
setShowModal(false);
}}
/>
),
)} */}
{allTokens.map(token =>
tokenStreams[token.id] ? null : (
<TokenInfo
key={token.symbol}
token={token}
balance={balances[token.symbol]}
disable={
!balances[token.symbol] ||
balances[token.symbol] === 0n
}
isSuperToken={true}
onClick={() => {
setSelectedToken({
token,
balance: balances[token.symbol],
});
setShowModal(false);
}}
/>
),
)}
<Title medium>Eligible Tokens</Title>
{allTokens.map(token => (
<TokenInfo
Expand Down

0 comments on commit a73f075

Please sign in to comment.