From 4dad223f1bc5dd3542ad18a760f16744587cb9bb Mon Sep 17 00:00:00 2001 From: Mylloon Date: Fri, 27 Sep 2024 16:34:36 +0200 Subject: [PATCH] debug --- src/utils/time.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/utils/time.ts b/src/utils/time.ts index 86a6f0a..91bfd74 100644 --- a/src/utils/time.ts +++ b/src/utils/time.ts @@ -61,8 +61,6 @@ export const strToSeconds = (time: string) => { let res = 0; data.forEach((match) => { - console.log(match.groups); - Object.entries(match.groups!).forEach(([key, value]) => { if (value) { res += +value * TimeSecond[key as keyof typeof TimeSecond];