hotfix: remove locale from formatNumber

This commit is contained in:
George Lima 2018-12-19 15:30:01 -03:00
parent c3f43c9e85
commit a9e5678e5e
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
// @flow
export default ({ value, append = '' }: { value: number, append?: string }) => `${append}${(value || 0).toLocaleString('de-DE')}`;
export default ({ value, append = '' }: { value: number, append?: string }) => `${append}${(value || 0).toLocaleString()}`;