We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fec8acd commit 7329596Copy full SHA for 7329596
src/components/History/NetworkUpgradeSummary.tsx
@@ -52,7 +52,7 @@ const NetworkUpgradeSummary = ({ name }: NetworkUpgradeSummaryProps) => {
52
<Emoji fontSize="sm" me={2} text=":bricks:" />
53
{t(translationKey)}:{" "}
54
<InlineLink to={`${explorerUrl}${number}`}>
55
- {new Intl.NumberFormat(localeForStatsBoxNumbers).format(number)}
+ <span style={{ marginLeft: '4px' }}>{new Intl.NumberFormat(localeForStatsBoxNumbers).format(number)}</span>
56
</InlineLink>
57
</Flex>
58
)
0 commit comments