feat: content background type by constant

This commit is contained in:
Arnošt Pleskot 2023-09-20 17:20:56 +02:00
parent f6cb510f6a
commit 9f17998427
No known key found for this signature in database
2 changed files with 29 additions and 9 deletions

View file

@ -66,7 +66,7 @@ export const getDefaultAppState = (): Omit<
openMenu: null,
openPopup: null,
openSidebar: null,
openDialog: null,
openDialog: "imageExport",
pasteDialog: { shown: false, data: null },
previousSelectedElementIds: {},
resizingElement: null,
@ -95,7 +95,7 @@ export const getDefaultAppState = (): Omit<
pendingImageElementId: null,
showHyperlinkPopup: false,
selectedLinearElement: null,
fancyBackgroundImageKey: DEFAULT_FANCY_BACKGROUND_IMAGE,
fancyBackgroundImageKey: "bubbles",
};
};