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

fix: summary line break (#3486)

parent 610acb01
......@@ -29,16 +29,16 @@ function TokenValue({ input, usdc, priceImpact }: TokenValueProps) {
</ThemedText.Body2>
</Row>
{usdc && (
<Row justify="flex-start">
<ThemedText.Caption color="secondary" userSelect>
<Row justify="flex-start" gap={0.25}>
${formatCurrencyAmount(usdc, 2, i18n.locale)}
{priceImpact && (
<ThemedText.Caption color={priceImpactWarning}>
({toHumanReadablePriceImpact(priceImpact)})
</ThemedText.Caption>
)}
</ThemedText.Caption>
</Row>
</ThemedText.Caption>
)}
</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