Fix sticker creator cover image selection

This commit is contained in:
Fedor Indutny 2023-07-21 22:01:46 +02:00 committed by GitHub
parent 2601197888
commit ca84d637ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,9 +39,6 @@ export function MetaStage(): JSX.Element {
const onDrop = React.useCallback( const onDrop = React.useCallback(
async ([file]: Array<FileWithPath>) => { async ([file]: Array<FileWithPath>) => {
if (!file.path) {
return;
}
try { try {
const stickerImage = await processImage( const stickerImage = await processImage(
file as FileWithRequiredPath, file as FileWithRequiredPath,
@ -49,7 +46,7 @@ export function MetaStage(): JSX.Element {
); );
dispatch(setCover(stickerImage)); dispatch(setCover(stickerImage));
} catch (e) { } catch (e) {
dispatch(removeImage(file.path)); dispatch(removeImage(file.path || file.name));
} }
}, },
[dispatch, artType] [dispatch, artType]