Skip to content

Commit

Permalink
fix double % (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshal2608 authored Aug 15, 2024
1 parent 35c6668 commit b96af5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/RoutingDiagram/RoutingDiagram.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export default function RoutingDiagram({
<CurrencyLogo currency={tokenIn} size="20px" />
<PoolBadgeWhite>
{entry.type}
<BadgeText style={{ fontWeight: 300, marginLeft: '4px' }}>{formatPercent(entry.percent)}%</BadgeText>
<BadgeText style={{ fontWeight: 300, marginLeft: '4px' }}>{formatPercent(entry.percent)}</BadgeText>
</PoolBadgeWhite>
</WrapperLabel>
<Route entry={entry} />
Expand Down

0 comments on commit b96af5b

Please sign in to comment.