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];