Skip to content

Commit

Permalink
Fix #12101: Bug: missing space in history entries
Browse files Browse the repository at this point in the history
  • Loading branch information
MohitKambli committed Feb 2, 2024
1 parent fec8acd commit 7329596
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/History/NetworkUpgradeSummary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const NetworkUpgradeSummary = ({ name }: NetworkUpgradeSummaryProps) => {
<Emoji fontSize="sm" me={2} text=":bricks:" />
{t(translationKey)}:{" "}
<InlineLink to={`${explorerUrl}${number}`}>
{new Intl.NumberFormat(localeForStatsBoxNumbers).format(number)}
<span style={{ marginLeft: '4px' }}>{new Intl.NumberFormat(localeForStatsBoxNumbers).format(number)}</span>
</InlineLink>
</Flex>
)
Expand Down

0 comments on commit 7329596

Please sign in to comment.