From 9bcd1788bf6edc0703f97e80a5dcc4763bac394a Mon Sep 17 00:00:00 2001 From: Barf-Vader <47476490+Barf-Vader@users.noreply.github.com> Date: Fri, 13 Jun 2025 13:56:08 +0100 Subject: [PATCH] fix: removed console.log --- src/routes/space/[id]/edit/+page.svelte | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/routes/space/[id]/edit/+page.svelte b/src/routes/space/[id]/edit/+page.svelte index 7ebf6a9..f937a43 100644 --- a/src/routes/space/[id]/edit/+page.svelte +++ b/src/routes/space/[id]/edit/+page.svelte @@ -59,7 +59,6 @@ let spaceImgs = $state(); let uploading = $state(false); function checkTimings() { - console.log(studySpaceData.opening_times); let cannotExist = [] as number[]; const opensAtMinsAll = timeToMins(allDays.opens_at); @@ -91,7 +90,6 @@ function genTimings(studySpaceId: string) { const fullDayOfWeek = [0, 1, 2, 3, 4, 5, 6]; - console.log(studySpaceData.opening_times, allDays); // all day only if ( studySpaceData.opening_times.length === 0 &&