Skip to content

Commit

Permalink
fix decimals display
Browse files Browse the repository at this point in the history
  • Loading branch information
radumojic committed Mar 15, 2024
1 parent 7b2b1de commit 0c8b7f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Format/FormatEGLD/FormatEGLD.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const FormatEGLD = ({
<span className={classNames(className, 'formatted')}>
<MultiversXSymbol className='symbol' />{' '}
<span className='amount'>{amount}</span>
<span className='decimals'>{decimals}</span>
{decimals && <span className='decimals'>.{decimals}</span>}
<>
{superSuffix ? (
<sup className='suffix'>&nbsp;{egldLabel}</sup>
Expand Down

0 comments on commit 0c8b7f9

Please sign in to comment.