feat: content background type by constant

This commit is contained in:
Arnošt Pleskot
2023-09-21 10:18:02 +02:00
parent f6cb510f6a
commit 9f17998427
2 changed files with 29 additions and 9 deletions
+2 -2
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",
};
};