From f4e8f02924c14d7f44f4200cf757e597f14c5cab Mon Sep 17 00:00:00 2001 From: Oliver Bryan Date: Sun, 8 Feb 2026 08:55:08 +0000 Subject: [PATCH] scrollable photo list and fixed photo box --- src/App.tsx | 43 ++++++++++++++++++++++++++----------------- 1 file changed, 26 insertions(+), 17 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index abf8e6c5..5a25a6a1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -505,11 +505,18 @@ function Home() { ) : (
-
+
{locationPhotos[location.id].map( (photo, photoIndex) => (
- {previewPhotoPath ? ( - {"active-photo"} - ) : ( -
- - No photo selected -
- )} +
+ {previewPhotoPath ? ( + {"active-photo"} + ) : ( + + + No photo selected + + )} +
))}