1
0

chore: Add trim
All checks were successful
Remote Deploy / deploy (push) Successful in 3s

This commit is contained in:
2025-09-04 08:29:01 +02:00
parent 5781bc1f8a
commit 3b10ab09e7

View File

@@ -71,7 +71,7 @@ export default async function parseThisShit(downloadedFilePath) {
try {
const regex = /^úklid\s+\d+\s+[A-Za-z]{2}$/;
if (regex.test(currentSheet[key]["w"]) || currentSheet[key]["w"].trim().length == 0) {
if (regex.test(currentSheet[key]["w"].trim()) || currentSheet[key]["w"].trim().length == 0) {
d = false;
}
} catch {}