Skip to content

Commit 3cf5541

Browse files
committed
feat(state): set tiptap editor mode as default
1 parent e4756ac commit 3cf5541

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/src/composables/useStudioState.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { StudioFeature } from '../types/context'
66
export const useStudioState = createSharedComposable(() => {
77
const devMode = ref(false)
88
const manifestId = ref<string>('')
9-
const preferences = useStorage<StudioConfig>('studio-preferences', { syncEditorAndRoute: true, showTechnicalMode: false, editorMode: 'code', debug: false })
9+
const preferences = useStorage<StudioConfig>('studio-preferences', { syncEditorAndRoute: true, showTechnicalMode: false, editorMode: 'tiptap', debug: false })
1010
const location = useStorage<StudioLocation>('studio-active', { active: false, feature: StudioFeature.Content, fsPath: '/' })
1111

1212
function setLocation(feature: StudioFeature, fsPath: string) {

0 commit comments

Comments
 (0)