We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a074d2b commit 94dafabCopy full SHA for 94dafab
1 file changed
packages/esm-nutrition-app/src/utils/helpers.ts
@@ -37,13 +37,13 @@ export function mealSymbol(value: string): string {
37
case '0%':
38
return '-';
39
case '25%':
40
- return '+';
+ return 'X';
41
case '50%':
42
- return '++';
+ return 'XX';
43
case '75%':
44
- return '+++';
+ return 'XXX';
45
case '100%':
46
- return '++++';
+ return 'XXXX';
47
default:
48
return '';
49
}
0 commit comments