Bug
Each row in the List view has a three-dot icon-only button at the far right end. Clicking it does nothing — its handler is only onClick={(e) => e.stopPropagation()} (no menu, no popover, no action).
The button is also hard to spot in the deployed UI — it may be clipped or sized so small (size={14}) that it goes unnoticed. The dead click target is real in code regardless.
Where
src/app.jsx:1182 — the <button> rendered at the end of every list-row container. Icon: <Icon name="more" size={14} />.
Expected
Either wire it to a per-row context menu (Open, Edit metadata, Discard, Copy filename, …), matching the universal "card has 3-dot menu" pattern, or remove the button if no per-row menu is planned for now.
Reported by
Daanvr, 2026-05-08, during dead-UI review.