diff --git a/src/components/gameMaster/mapEditor/partials/CreateMap.vue b/src/components/gameMaster/mapEditor/partials/CreateMap.vue index df9366f..e1552f0 100644 --- a/src/components/gameMaster/mapEditor/partials/CreateMap.vue +++ b/src/components/gameMaster/mapEditor/partials/CreateMap.vue @@ -58,10 +58,6 @@ defineExpose({ open: () => modalRef.value?.open() }) async function submit() { gameStore.connection?.emit('gm:map:create', { name: name.value, width: width.value, height: height.value }, async (response: Map | false) => { if (!response) { - gameStore.addNotification({ - title: 'Error', - message: 'Failed to create map.' - }) return }