fixing bugs
All checks were successful
Deploy UI / deploy (push) Successful in 1s

This commit is contained in:
Your Name 2026-05-19 20:34:00 -04:00
parent 6c7b94adce
commit 528813d4a0
6 changed files with 33 additions and 4 deletions

View file

@ -159,7 +159,7 @@ function DayView({ data, selectedDay, setSelectedDay, setSelectedRecording, setV
{dayRecs.length === 0 ? (
<div style={{ color: 'var(--text3)', fontFamily: 'var(--font-mono)', fontSize: 12, marginTop: 20 }}>No recordings this day.</div>
) : (
<DayTimeline recordings={dayRecs} onSelect={r => { setSelectedRecording(r); setView('detail'); }} />
<DayTimeline recordings={dayRecs} onSelect={r => setSelectedRecording(r)} />
)}
</>
)}