Problem
Cards in My Places (src/components/map/my-places-panel.tsx:138-164) are plain <div>s whose only affordance is Edit. The whole point of saving a place is finding it again, but there is:
- no click-to-focus on the map (you must open the edit dialog and read coordinates)
- no direct delete (deleting requires opening the editor)
Compare with public results (results-list.tsx), where rows focus the map on click.
Suggested fix
- Make each card clickable to set
focusId / fly the map to the pin
- Add a small delete icon-button with confirm/undo (see the destructive-delete issue)
- Keep Edit as a secondary action
Acceptance criteria
Problem
Cards in My Places (
src/components/map/my-places-panel.tsx:138-164) are plain<div>s whose only affordance is Edit. The whole point of saving a place is finding it again, but there is:Compare with public results (
results-list.tsx), where rows focus the map on click.Suggested fix
focusId/ fly the map to the pinAcceptance criteria