diff --git a/src/photos/ducks/albums/index.jsx b/src/photos/ducks/albums/index.jsx index 14617bb4..c6020078 100644 --- a/src/photos/ducks/albums/index.jsx +++ b/src/photos/ducks/albums/index.jsx @@ -207,8 +207,13 @@ export const AlbumPhotosWithLoader = () => { } } -const CreateAlbumPicker = ({ showAlert, t }) => - withMutations(ALBUMS_MUTATIONS(showAlert, t))(PhotosPicker) +const CreateAlbumPicker = ({ showAlert, t }) => { + const PhotosPickerWithMutation = withMutations( + ALBUMS_MUTATIONS(showAlert, t) + )(PhotosPicker) + + return +} const ConnectedPhotosPicker = ({ ...props }) => { const { albumId } = useParams()