chore: merge dev to main #181

Merged
Anri merged 40 commits from dev into main 2024-09-27 20:49:36 +02:00
Showing only changes of commit 4dad223f1b - Show all commits

View file

@ -61,8 +61,6 @@ export const strToSeconds = (time: string) => {
let res = 0; let res = 0;
data.forEach((match) => { data.forEach((match) => {
console.log(match.groups);
Object.entries(match.groups!).forEach(([key, value]) => { Object.entries(match.groups!).forEach(([key, value]) => {
if (value) { if (value) {
res += +value * TimeSecond[key as keyof typeof TimeSecond]; res += +value * TimeSecond[key as keyof typeof TimeSecond];