From 1ca07069233c53e5b9a58a44ad54a3fd5a43f31d Mon Sep 17 00:00:00 2001 From: Ricardo Campos Date: Mon, 15 Dec 2025 05:17:05 -0300 Subject: [PATCH] fix: pre-workout group not showing up --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index a3516bf..e212264 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1242,6 +1242,7 @@ function groupFoodEntriesByMeal(entries: FoodStorage[]): MealGroup[] { // Return only groups that have entries, in chronological order const orderedPeriods: MealPeriod[] = [ + 'pre-workout', 'breakfast', 'second-breakfast', 'lunch', 'snacks', 'dinner', 'night-snacks' ];