diff --git a/src/components/Dashboard/Modals/SelectElement/Components/Overview/AvailableElementsOverview.tsx b/src/components/Dashboard/Modals/SelectElement/Components/Overview/AvailableElementsOverview.tsx index 21345ef41..555373bfa 100644 --- a/src/components/Dashboard/Modals/SelectElement/Components/Overview/AvailableElementsOverview.tsx +++ b/src/components/Dashboard/Modals/SelectElement/Components/Overview/AvailableElementsOverview.tsx @@ -53,7 +53,7 @@ export const AvailableElementTypes = ({ area: { type: 'wrapper', properties: { - id: getLowestWrapper()?.id ?? '', + id: getLowestWrapper()?.id ?? 'default', }, }, shape: { diff --git a/src/tools/config/getFallbackConfig.ts b/src/tools/config/getFallbackConfig.ts index 922362bc3..4777a8ffe 100644 --- a/src/tools/config/getFallbackConfig.ts +++ b/src/tools/config/getFallbackConfig.ts @@ -22,13 +22,18 @@ export const getFallbackConfig = (name?: string): BackendConfigType => ({ customization: { colors: {}, layout: { - enabledDocker: true, - enabledLeftSidebar: true, - enabledPing: true, - enabledRightSidebar: true, + enabledDocker: false, + enabledLeftSidebar: false, + enabledPing: false, + enabledRightSidebar: false, enabledSearchbar: true, }, }, }, - wrappers: [], + wrappers: [ + { + id: 'default', + position: 0, + }, + ], });