add default text on create flow (#825)

This commit is contained in:
Ian Lapham 2020-05-21 19:16:42 -04:00 committed by GitHub
parent 96c9eede18
commit 513a1b0c4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -79,8 +79,9 @@ export default function CreatePool({ history, location }: RouteComponentProps) {
<Text fontWeight={500} fontSize={20} marginLeft={'12px'}>
{token0?.symbol}{' '}
</Text>
{console.log(token0)}
<TYPE.darkGray fontWeight={500} fontSize={16} marginLeft={'8px'}>
{token0?.address === 'ETH' && '(default)'}
{token0?.address === WETH[chainId]?.address && '(default)'}
</TYPE.darkGray>
</Row>
</ButtonDropwdownLight>