diff options
Diffstat (limited to 'stores')
| -rw-r--r-- | stores/session.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/stores/session.ts b/stores/session.ts index 1cc8dc7..1938b63 100644 --- a/stores/session.ts +++ b/stores/session.ts @@ -78,12 +78,6 @@ export const useSessionStore = defineStore('session', { quests: [] as EditorQuest[], categories: [] as EditorCategory[], taskDefinitions: {} as { [key: string]: TaskDefinition }, - }, - editor: { - selected: { - type: '' as 'Quest' | 'Category' | null, - id: '' as string | null, - } } }), getters: { @@ -141,10 +135,6 @@ export const useSessionStore = defineStore('session', { // }) // this.editor.categories = categories; // }, - setEditorSelected(type: 'Quest' | 'Category' | null, id: string | null) { - this.editor.selected.type = type - this.editor.selected.id = id - }, setTaskDefinitions(definitions: { [key: string]: TaskDefinition }) { this.session.taskDefinitions = definitions }, |
