mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-05-07 18:18:42 -05:00
The status display sliced the milestone list with `[:3]`, so once any three milestones were unlocked or ready, every milestone after that vanished from the output. After unlocking milestones 01, 02, 03 the student would no longer see that milestones 04, 05, 06 were ready to unlock — they appeared to drop off the dashboard entirely. Iterate over the full readiness list instead. The list has at most six entries, so output stays compact, and "ready" milestones beyond the third unlocked one are now visible. Relates to #1615