Skip to content

Commit

Permalink
fix: remove buttons that do not do anything yet (part 2) (#193)
Browse files Browse the repository at this point in the history
Default to usable token for now
  • Loading branch information
dib542 authored Nov 26, 2022
1 parent ac39952 commit e9e7730
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Pool/Pool.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default function Pool() {
}, [tokenA, tokenList]);
// set token B to be USDC token in list if not already populated
useEffect(() => {
const USDC = tokenList?.find((token) => token.symbol === 'USDC');
const USDC = tokenList?.find((token) => token.symbol === 'STK');
if (USDC && !tokenB) {
setTokenB(USDC);
}
Expand Down

0 comments on commit e9e7730

Please sign in to comment.