Commit b4e0234d authored by Zach Pomerantz's avatar Zach Pomerantz Committed by GitHub

fix: avoid summary wrap (#3497)

parent 4a8dbda0
...@@ -26,12 +26,12 @@ function TokenValue({ input, usdc, children }: PropsWithChildren<TokenValueProps ...@@ -26,12 +26,12 @@ function TokenValue({ input, usdc, children }: PropsWithChildren<TokenValueProps
</ThemedText.Body2> </ThemedText.Body2>
</Row> </Row>
{usdc && ( {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)} ${formatCurrencyAmount(usdc, 6, 'en', 2)}
{children} {children}
</ThemedText.Caption> </Row>
</Row> </ThemedText.Caption>
)} )}
</Column> </Column>
) )
......
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