Skip to content

Commit 513a1b0

Browse files
authored
add default text on create flow (#825)
1 parent 96c9eed commit 513a1b0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pages/CreatePool/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,9 @@ export default function CreatePool({ history, location }: RouteComponentProps) {
7979
<Text fontWeight={500} fontSize={20} marginLeft={'12px'}>
8080
{token0?.symbol}{' '}
8181
</Text>
82+
{console.log(token0)}
8283
<TYPE.darkGray fontWeight={500} fontSize={16} marginLeft={'8px'}>
83-
{token0?.address === 'ETH' && '(default)'}
84+
{token0?.address === WETH[chainId]?.address && '(default)'}
8485
</TYPE.darkGray>
8586
</Row>
8687
</ButtonDropwdownLight>

0 commit comments

Comments
 (0)