From 596b695c5b1c5899f5d1d04accaef43f278acc0c Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Wed, 28 Dec 2022 15:00:00 +1300 Subject: [PATCH] Remove unlabelled log from StartPlan --- StartPlan.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/StartPlan.tsx b/StartPlan.tsx index 25aa2bb..55b5450 100644 --- a/StartPlan.tsx +++ b/StartPlan.tsx @@ -38,7 +38,6 @@ export default function StartPlan() { const questions = workouts .map((workout, index) => `('${workout}',${index})`) .join(',') - console.log({questions, workouts}) const select = ` SELECT workouts.name, COUNT(sets.id) as total, sets.sets FROM (select 0 as name, 0 as sequence union values ${questions}) as workouts