From e28ddccd7f8faebec639c2437a0ae08a6f158514 Mon Sep 17 00:00:00 2001 From: AG Date: Tue, 25 Nov 2025 23:48:40 +0200 Subject: [PATCH] Cleanup --- components/Tracker.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Tracker.tsx b/components/Tracker.tsx index b1785d7..d151a29 100644 --- a/components/Tracker.tsx +++ b/components/Tracker.tsx @@ -70,7 +70,7 @@ const Tracker: React.FC = ({ userId, userWeight, activeSession, ac useEffect(() => { const loadData = async () => { const exList = await getExercises(userId); - setExercises(exList.filter(e => !e.isArchived || (activePlan && activePlan.steps.some(s => s.exerciseId === e.id)))); + setExercises(exList); const planList = await getPlans(userId); setPlans(planList);