Change page views notation to standard
Some checks failed
Build And Publish / BuildAndPublish (push) Failing after 1m37s

This commit is contained in:
Ryan Freeman 2025-02-23 21:05:59 +00:00
parent 62e1d50585
commit 415fc84251

View File

@ -1,5 +1,5 @@
export function numberFormat(value: number) {
return new Intl.NumberFormat('en', {
notation: 'compact'
notation: 'standard'
}).format(value)
}