fix: dim only finished events in the timeline

The bar tested for an entry in the progress store, but an entry appears
there the moment a reader records an effort or a note. Recording "this
looks like a grind" greyed the event out as though it were already done.

Ask whether it is done instead.

Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
This commit is contained in:
Lucas Winther
2026-08-15 21:16:48 +02:00
co-authored by Claude Opus 5
parent b1df7b2581
commit ad3647bee2
2 changed files with 9 additions and 9 deletions
+1 -6
View File
@@ -260,12 +260,7 @@ export function App() {
)}
</>
) : (
<Timeline
rows={visible}
now={now}
onOpen={setOpenId}
completions={prog.progress}
/>
<Timeline rows={visible} now={now} onOpen={setOpenId} isDone={isDone} />
)}
<Controls