diff --git a/src/components/moderation/PhotoModal.tsx b/src/components/moderation/PhotoModal.tsx index 6e78502b..2db85d5a 100644 --- a/src/components/moderation/PhotoModal.tsx +++ b/src/components/moderation/PhotoModal.tsx @@ -93,9 +93,11 @@ export function PhotoModal({ photos, initialIndex, isOpen, onClose }: PhotoModal {/* Header */}
-

- {currentPhoto?.filename || `Photo ${currentIndex + 1}`} -

+ {currentPhoto?.caption && ( +

+ {currentPhoto.caption} +

+ )} {photos.length > 1 && (

{currentIndex + 1} of {photos.length} @@ -140,7 +142,7 @@ export function PhotoModal({ photos, initialIndex, isOpen, onClose }: PhotoModal {/* Mobile navigation dots */} {photos.length > 1 && isMobile && ( -

+
{photos.map((_, idx) => (