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);