fix: hide debug print

This commit is contained in:
ae 2025-05-04 13:51:39 +03:00
parent dd2d8f3c34
commit 0e9a221728
Signed by: ae
GPG Key ID: 995EFD5C1B532B3E

View File

@ -34,7 +34,7 @@ export const parseExpirationPrefix = (title: string): [string, string] => {
const match = title.match(EXPIRATION_DATE_REGEX) const match = title.match(EXPIRATION_DATE_REGEX)
if (match && match[1]) { if (match && match[1]) {
console.log(`[UTIL] Extracted expiration prefix: '${match[1]}'`) // console.log(`[UTIL] Extracted expiration prefix: '${match[1]}'`)
// return [clean title, expiration prefix] // return [clean title, expiration prefix]
return [match[2], match[1]] return [match[2], match[1]]
} }