Commit 513a1b0c authored by Ian Lapham's avatar Ian Lapham Committed by GitHub

add default text on create flow (#825)

parent 96c9eede
...@@ -79,8 +79,9 @@ export default function CreatePool({ history, location }: RouteComponentProps) { ...@@ -79,8 +79,9 @@ export default function CreatePool({ history, location }: RouteComponentProps) {
<Text fontWeight={500} fontSize={20} marginLeft={'12px'}> <Text fontWeight={500} fontSize={20} marginLeft={'12px'}>
{token0?.symbol}{' '} {token0?.symbol}{' '}
</Text> </Text>
{console.log(token0)}
<TYPE.darkGray fontWeight={500} fontSize={16} marginLeft={'8px'}> <TYPE.darkGray fontWeight={500} fontSize={16} marginLeft={'8px'}>
{token0?.address === 'ETH' && '(default)'} {token0?.address === WETH[chainId]?.address && '(default)'}
</TYPE.darkGray> </TYPE.darkGray>
</Row> </Row>
</ButtonDropwdownLight> </ButtonDropwdownLight>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment