Fix copy-paste error on mailer store

This commit is contained in:
Eli Ribble 2026-04-29 19:17:20 +00:00
parent 364b4ddc32
commit 53ce100859
No known key found for this signature in database

View file

@ -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<Mailer[] | null>(null);
const _byID = ref<Map<string, Mailer>>(new Map());