diff --git a/src/app/pipes/nyanoToLocale.pipe.ts b/src/app/pipes/nyanoToLocale.pipe.ts index cae26383..c7c62848 100644 --- a/src/app/pipes/nyanoToLocale.pipe.ts +++ b/src/app/pipes/nyanoToLocale.pipe.ts @@ -6,6 +6,6 @@ import { Pipe, PipeTransform } from '@angular/core'; export class nyanoToLocalePipe implements PipeTransform { transform(value: any, args?: any): any { - return Number(value).toLocaleString("en-US", {maximumFractionDigits: 0}); + return Number(value).toLocaleString("en-US"); } }