Anonymous boards are reachable only by URL — if you lose the link, the board is gone from your view. Keep a small localStorage list of boards this browser opened (id, name, last-opened) and show a "Recent boards" section on the home screen.
Where to look: web/src/state/editorStore.ts openDoc() is the single place every board passes through; the home screen lives in web/src/features/dashboard/.
Done when: opening any board adds it to the list (deduped, most-recent first, cap ~20); the home screen shows name + relative time and clicking reopens /d/{id}.
Anonymous boards are reachable only by URL — if you lose the link, the board is gone from your view. Keep a small localStorage list of boards this browser opened (id, name, last-opened) and show a "Recent boards" section on the home screen.
Where to look:
web/src/state/editorStore.tsopenDoc()is the single place every board passes through; the home screen lives inweb/src/features/dashboard/.Done when: opening any board adds it to the list (deduped, most-recent first, cap ~20); the home screen shows name + relative time and clicking reopens
/d/{id}.