fix(ui): fix save to gallery without bounding box

This commit is contained in:
psychedelicious 2023-05-29 16:17:26 +10:00 committed by Kent Keirsey
parent 970340cf62
commit 6764b2a854

View File

@ -15,7 +15,7 @@ export const addCanvasSavedToGalleryListener = () => {
effect: async (action, { dispatch, getState, take }) => {
const state = getState();
const blob = await getBaseLayerBlob(state);
const blob = await getBaseLayerBlob(state, true);
if (!blob) {
moduleLog.error('Problem getting base layer blob');