From 53ce1008593083c4ce68ca47e1fe9b8a655701c6 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Wed, 29 Apr 2026 19:17:20 +0000 Subject: [PATCH] Fix copy-paste error on mailer store --- ts/store/mailer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/store/mailer.ts b/ts/store/mailer.ts index 79eff940..d4b90b56 100644 --- a/ts/store/mailer.ts +++ b/ts/store/mailer.ts @@ -5,7 +5,7 @@ import { useSessionStore } from "@/store/session"; import { apiClient } from "@/client"; import { Mailer, type MailerDTO } from "@/type/api"; -export const useStoreMailer = defineStore("publicreport", () => { +export const useStoreMailer = defineStore("mailer", () => { // State const _all = ref(null); const _byID = ref>(new Map());