Merge branch 'master' into affiliate

This commit is contained in:
Ben
2024-03-11 20:43:48 -04:00

View File

@@ -8,7 +8,7 @@ export class NumberSuffixPipe implements PipeTransform {
transform(value: number): string {
const suffixes = ['', 'k', 'M', 'B', 'T', 'P', 'E'];
const suffixes = ['', 'k', 'M', 'G', 'T', 'P', 'E'];
if (value == null || value < 0) {
return '0';