From 5c659d9046add8c77bd7699961a910505dcb4bc2 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Mon, 24 Aug 2026 06:20:52 +0000 Subject: Remove confirmed-orphaned routes, handlers, and templates From the sitemap audit: /tabs/meals (same dead-tab pattern as the removed /tabs/conditions, only reachable via ?tab=meals with no nav button), /partials/lists (superseded by inline .Lists rendering in trello-board.html), /shopping/toggle and /shopping/mode/{store}/toggle (superseded by the one-way complete/filter model), plus the orphaned trello-boards.html and error-banner.html templates that nothing rendered or included. Rewrote the meals grouping test to exercise groupMeals() directly since that logic is still live via the timeline. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_017GMEkHeqKz6FLkmizowBTK --- web/static/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web/static/js/app.js') diff --git a/web/static/js/app.js b/web/static/js/app.js index 37d2a30..8058dc2 100644 --- a/web/static/js/app.js +++ b/web/static/js/app.js @@ -320,7 +320,7 @@ function toggleTask(taskId) { const SWIPE_THRESHOLD = 50; // Minimum px for a swipe // Get ordered list of tab names (main tabs only for swipe) - const TAB_ORDER = ['timeline', 'shopping', 'conditions', 'tasks', 'planning', 'meals']; + const TAB_ORDER = ['timeline', 'shopping', 'tasks', 'planning']; function handleSwipe() { const swipeDistance = touchEndX - touchStartX; -- cgit v1.2.3