fix: avoid summary wrap (#3497)

This commit is contained in:
Zach Pomerantz 2022-03-10 15:59:45 -08:00 committed by GitHub
parent 4a8dbda0b8
commit b4e0234d07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26,12 +26,12 @@ function TokenValue({ input, usdc, children }: PropsWithChildren<TokenValueProps
</ThemedText.Body2>
</Row>
{usdc && (
<Row justify="flex-start">
<ThemedText.Caption color="secondary" userSelect>
<ThemedText.Caption color="secondary" userSelect>
<Row justify="flex-start" gap={0.25}>
${formatCurrencyAmount(usdc, 6, 'en', 2)}
{children}
</ThemedText.Caption>
</Row>
</Row>
</ThemedText.Caption>
)}
</Column>
)