Skip to content

Commit

Permalink
feat: remove decimals from alteration sum (#3436)
Browse files Browse the repository at this point in the history
  • Loading branch information
rikuke authored Oct 16, 2024
1 parent 3fd9088 commit 2979d18
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ AlterationAccordionItemProps): JSX.Element => {
'common:applications.decision.alterationList.item.recoveryAmount'
)}
</dt>
<dd>{formatFloatToCurrency(alteration.recoveryAmount)}</dd>
<dd>{formatFloatToCurrency(alteration.recoveryAmount, "EUR", "fi-FI", 0)}</dd>
</$GridCell>
<$GridCell $colSpan={3}>
<dt>
Expand Down

0 comments on commit 2979d18

Please sign in to comment.