diff --git a/src/containers/dialogs/PhotoSwipe/index.tsx b/src/containers/dialogs/PhotoSwipe/index.tsx index 1a27d896..29ce49a9 100644 --- a/src/containers/dialogs/PhotoSwipe/index.tsx +++ b/src/containers/dialogs/PhotoSwipe/index.tsx @@ -29,7 +29,7 @@ const PhotoSwipeUnconnected: FC = ({ photoswipe, modalSetShown }) => { const items = useMemo( () => photoswipe.images.map(image => ({ - src: getURL(image, window.innerWidth < 768 ? PRESETS[900] : ''), + src: getURL(image, window.innerWidth < 768 ? PRESETS[900] : PRESETS[1600]), })), [photoswipe.images] );