Skip to content

Commit 472a12e

Browse files
committed
remove superfluos argument
1 parent 734f77c commit 472a12e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web_src/js/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ export function parseIssueHref(href) {
6363
export function prettyNumber(num, locale = 'en-US') {
6464
if (typeof num !== 'number') return '';
6565
const {format} = new Intl.NumberFormat(locale);
66-
return format(num, locale);
66+
return format(num);
6767
}

0 commit comments

Comments
 (0)