From ca09613d9b9d49e624db47a0029d887292fe25c0 Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Wed, 12 Oct 2022 17:17:47 +1300 Subject: [PATCH] Include set image when adding a set from plan If a user has set an image for a workout, then adding a set should include it's image. --- StartPlan.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/StartPlan.tsx b/StartPlan.tsx index 91931f6..37d4c8b 100644 --- a/StartPlan.tsx +++ b/StartPlan.tsx @@ -66,6 +66,7 @@ export default function StartPlan() { minutes: set.minutes, seconds: set.seconds, steps: set.steps, + image: set.image, unit, }); countManyToday().then(setCounts);