style: fix no-empty — add comments to intentionally empty catch blocks

This commit is contained in:
2026-06-25 14:33:44 +01:00
parent 7abacbc2b4
commit 63e9b32720
2 changed files with 6 additions and 2 deletions
@@ -168,7 +168,9 @@
const data = await bmRes.json();
bookingsMade = (data.bookings || []).length;
}
} catch {}
} catch {
// Non-critical — bookings-made fetch is optional for stats
}
const newStats: Stats = {
total,