fix(ui): fix canvas save to gallery incorrect is_intermediate flag

This commit is contained in:
psychedelicious 2023-05-29 09:32:30 +10:00 committed by Kent Keirsey
parent 3e3dd39ae4
commit 6f82801d07

View File

@ -37,7 +37,7 @@ export const addCanvasSavedToGalleryListener = () => {
file: new File([blob], filename, { type: 'image/png' }),
},
imageCategory: 'general',
isIntermediate: true,
isIntermediate: false,
})
);