fix(ui): update to match change in route params

This commit is contained in:
Mary Hipp 2023-04-27 15:23:50 -04:00 committed by psychedelicious
parent 4453a0d20d
commit ea93cad5ff

View File

@ -234,7 +234,12 @@ export const socketMiddleware = () => {
const imageType = result.image.image_type;
dispatch(imageReceived({ imageName, imageType }));
dispatch(thumbnailReceived({ imageName, imageType }));
dispatch(
thumbnailReceived({
thumbnailName: imageName,
thumbnailType: imageType,
})
);
}
}
}