Skip to content

Commit

Permalink
Remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
dzbo committed Nov 4, 2024
1 parent 21135e9 commit 9475f45
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions domains/grid/platform-parser/gridParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,13 @@ export const parsePlatformInput = async (
matches = Array.from(input.matchAll(regex))
} else {
const match = input.match(regex)
console.log(JSON.stringify(match))

if (match) {
matches.push(match)
}
}

if (matches.length) {
console.log(matches)
return await callback(matches)
}
}
Expand Down

0 comments on commit 9475f45

Please sign in to comment.