Skip to content

Commit e2582c5

Browse files
committed
cleanup
1 parent 7329596 commit e2582c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/History/NetworkUpgradeSummary.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ const NetworkUpgradeSummary = ({ name }: NetworkUpgradeSummaryProps) => {
4848

4949
const blockTypeTranslation = (translationKey, explorerUrl, number) => {
5050
return (
51-
<Flex>
51+
<Flex whiteSpace='pre-wrap'>
5252
<Emoji fontSize="sm" me={2} text=":bricks:" />
5353
{t(translationKey)}:{" "}
5454
<InlineLink to={`${explorerUrl}${number}`}>
55-
<span style={{ marginLeft: '4px' }}>{new Intl.NumberFormat(localeForStatsBoxNumbers).format(number)}</span>
55+
{new Intl.NumberFormat(localeForStatsBoxNumbers).format(number)}
5656
</InlineLink>
5757
</Flex>
5858
)

0 commit comments

Comments
 (0)