We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4756ac commit 3cf5541Copy full SHA for 3cf5541
src/app/src/composables/useStudioState.ts
@@ -6,7 +6,7 @@ import { StudioFeature } from '../types/context'
6
export const useStudioState = createSharedComposable(() => {
7
const devMode = ref(false)
8
const manifestId = ref<string>('')
9
- const preferences = useStorage<StudioConfig>('studio-preferences', { syncEditorAndRoute: true, showTechnicalMode: false, editorMode: 'code', debug: false })
+ const preferences = useStorage<StudioConfig>('studio-preferences', { syncEditorAndRoute: true, showTechnicalMode: false, editorMode: 'tiptap', debug: false })
10
const location = useStorage<StudioLocation>('studio-active', { active: false, feature: StudioFeature.Content, fsPath: '/' })
11
12
function setLocation(feature: StudioFeature, fsPath: string) {
0 commit comments