diff --git a/src/photo/PhotoGridPage.tsx b/src/photo/PhotoGridPage.tsx index 22640fcc..a69eba06 100644 --- a/src/photo/PhotoGridPage.tsx +++ b/src/photo/PhotoGridPage.tsx @@ -9,6 +9,7 @@ import PhotoGridSidebar from './PhotoGridSidebar'; import PhotoGridContainer from './PhotoGridContainer'; import { useEffect } from 'react'; import { useAppState } from '@/state/AppState'; +import clsx from 'clsx/lite'; export default function PhotoGridPage({ photos, @@ -35,14 +36,19 @@ export default function PhotoGridPage({ cacheKey={`page-${PATH_GRID}`} photos={photos} count={photosCount} - sidebar={
- -
} + sidebar={ +
+ +
} canSelect /> ); diff --git a/src/photo/PhotoGridSidebar.tsx b/src/photo/PhotoGridSidebar.tsx index af3a803d..ba93d5ff 100644 --- a/src/photo/PhotoGridSidebar.tsx +++ b/src/photo/PhotoGridSidebar.tsx @@ -44,7 +44,7 @@ export default function PhotoGridSidebar({ , [tags, hiddenPhotosCount]); return ( - <> +
{SITE_ABOUT && } - +
); }