From a071261e8673930656afd50b35e473151cc69ff4 Mon Sep 17 00:00:00 2001 From: Dennis Postma Date: Fri, 26 Jul 2024 19:03:00 +0200 Subject: [PATCH] Updated default value in zoneEditor store --- src/stores/zoneEditor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/zoneEditor.ts b/src/stores/zoneEditor.ts index 060b066..3adfbf1 100644 --- a/src/stores/zoneEditor.ts +++ b/src/stores/zoneEditor.ts @@ -4,7 +4,7 @@ import type { Zone, Object, Tile, ZoneObject } from '@/types' export const useZoneEditorStore = defineStore('zoneEditor', { state: () => ({ - active: true, + active: false, zone: null as Zone | null, tool: 'move', drawMode: 'tile',