diff --git a/src/stores/mapEditorStore.ts b/src/stores/mapEditorStore.ts
index 49215d5..fd25d5a 100644
--- a/src/stores/mapEditorStore.ts
+++ b/src/stores/mapEditorStore.ts
@@ -73,9 +73,6 @@ export const useMapEditorStore = defineStore('mapEditor', {
     setEraserMode(mode: string) {
       this.eraserMode = mode
     },
-    setMapList(maps: Map[]) {
-      this.mapList = maps
-    },
     setTileList(tiles: Tile[]) {
       this.tileList = tiles
     },
@@ -109,7 +106,6 @@ export const useMapEditorStore = defineStore('mapEditor', {
     },
     reset() {
       this.mapId = ''
-      this.mapList = []
       this.tileList = []
       this.mapObjectList = []
       this.tool = 'move'