Remove excess space

This commit is contained in:
Fabrice Lamant
2024-07-23 22:00:30 +02:00
parent 6c38dbb1f5
commit 23d6b2c916
112 changed files with 3441 additions and 3441 deletions

View File

@ -30,7 +30,7 @@ const generateICS = (title, key, events) => {
index--;
}
lines.push(result.slice(0, index));
result = " " + result.slice(index);
result = " " + result.slice(index).trim();
}
lines.push(result);
return lines.join("\r\n").trim();