Skip to content

Commit

Permalink
PP-13510: Remove pence from currency formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
katstevens committed Jan 16, 2025
1 parent d9b4d2c commit fce8b7d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion browser/src/dashboard/format.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
export const currencyFormatter = new Intl.NumberFormat('en-GB', {
style: 'currency',
currency: 'GBP'
currency: 'GBP',
maximumFractionDigits: 0,
minimumFractionDigits: 0
})

export const numberFormatter = new Intl.NumberFormat('en-GB', {
Expand Down

0 comments on commit fce8b7d

Please sign in to comment.