fix: category names

This commit is contained in:
2025-09-08 05:19:40 -03:00
parent c337b7e352
commit a18695ba82
3 changed files with 51 additions and 51 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
type FoodCategory = 'fats' | 'proteins' | 'carbs (high)' | 'leaves' | 'fruits' | 'carbs (low)' | 'dairy';
type FoodCategory = 'fats' | 'proteins' | 'carbs' | 'leaves' | 'fruits' | 'low carb' | 'dairy';
export type FoodItem = {
name: string;