/* ============================================================ Final (locked) Tee Sheet — Friday 9:00 AM ET lock. A clean, screenshot-ready sheet per day for the pro shop: every DIV Tour tee time, with empty times stamped OK TO RELEASE. Includes per-day PNG download + an email composer to the Golf Shop and Head Pro. ============================================================ */ /* -------- the printable / screenshot-ready sheet for ONE day -------- */ function LockedTeeSheet({ slots, dayLabel, dateLabel, lockLabel, weekendLabel }) { const Y = window.YCC; const sorted = Y.sortByTime(slots || []); const filledTimes = sorted.filter((s) => (s.players || []).length > 0).length; const openTimes = sorted.filter((s) => (s.players || []).length === 0).length; const golfers = sorted.reduce((n, s) => n + (s.players || []).length, 0); return (