Skip to content

Commit

Permalink
cleanup: remove stray console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
WhyAsh5114 committed Nov 29, 2024
1 parent 4c66cb3 commit 4c411de
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
bodyweightFraction: exercise.bodyweightFraction ?? null
}
});
console.log(actualOverload);
return actualOverload;
}
Expand Down
1 change: 0 additions & 1 deletion src/routes/workouts/manage/exercises/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
onMount(async () => {
if (workoutRunes.workoutData === null) goto('./start');
const serverData = await data.serverData;
console.log(serverData);
if (workoutRunes.workoutExercises === null) {
workoutRunes.workoutExercises = serverData?.todaysWorkoutExercises ?? [];
}
Expand Down
1 change: 0 additions & 1 deletion src/routes/workouts/manage/start/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
$effect(() => {
data.workoutData.then((data) => {
console.log(data);
if (workoutRunes.editingWorkoutId === null) workoutData = data;
else workoutData = workoutRunes.workoutData as RouterOutputs['workouts']['getTodaysWorkoutData'];
Expand Down

0 comments on commit 4c411de

Please sign in to comment.