The issue describes CountdownTimer being imported but never rendered in
components/streams/stream-card.tsx and app/app/stream/[id]/page.tsx,
with AccessibleCountdownTimer used in its place. That is not the current
state of main:
- Both files import
CountdownTimerfromcomponents/ui/countdown-timerand render it —<CountdownTimer target={...} />appears in both. AccessibleCountdownTimerandcomponents/ui/accessible-countdown-timer.tsxdo not exist onmainat all.
The unmerged branch origin/fix/csv-cliff-duration (commit d295247,
"changes", 2026-06-29) adds components/ui/accessible-countdown-timer.tsx
and swaps the JSX usage in both files over to AccessibleCountdownTimer,
but leaves the old CountdownTimer import behind — that's the dead import
the issue is describing. That branch is not an ancestor of main.
Hold this cleanup until fix/csv-cliff-duration merges into main, then
remove the dead CountdownTimer import there (and delete
components/ui/countdown-timer.tsx if it ends up with no remaining
usages app-wide). Doing it against main today would be a no-op change,
since the import is still live here.