Skip to content

Commit ddc3da4

Browse files
committed
Trigger rebuild - fix production deployment
1 parent c3eeb92 commit ddc3da4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/gallery/GalleryImage.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ interface GalleryImageProps extends ImageProps {
88
enableGallery?: boolean;
99
}
1010

11-
export const GalleryImage = ({ enableGallery = true, ...props }: GalleryImageProps) => {
11+
export const GalleryImage = ({
12+
enableGallery = true,
13+
...props
14+
}: GalleryImageProps) => {
1215
const imageRef = useRef<HTMLImageElement>(null);
1316
const { openGallery } = useGallery();
1417

0 commit comments

Comments
 (0)