fix: remove TypeScript type annotation from SchedulePage.jsx (plain JSX build)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-08 03:52:22 +03:00
parent 492096007b
commit 49f19ed65c

View File

@@ -209,7 +209,7 @@ export default function SchedulePage() {
// Build per-waiter per-day grid
// { waiter_id: { dateStr: { scheduled: [...], actual: [...] } } }
const grid: Record<number, Record<string, { scheduled: any[], actual: any[] }>> = {}
const grid = {}
for (const s of scheduled) {
if (!grid[s.user_id]) grid[s.user_id] = {}