fix: some stuff
Some checks failed
Deploy to SFTP Server / build (push) Failing after 14m20s

This commit is contained in:
Max Richter
2025-10-24 15:09:39 +02:00
parent 190edd0915
commit 467dcbfd32
3 changed files with 65 additions and 26 deletions

View File

@@ -8,7 +8,7 @@
const iso = (d: string | Date) => {
const v = toDate(d);
return isNaN(v.getTime()) ? "" : v.toISOString();
return isNaN(v?.getTime()) ? "" : v.toISOString();
};
function formatRating(rating: string | number) {