Fix copy-paste error on mailer store
This commit is contained in:
parent
364b4ddc32
commit
53ce100859
1 changed files with 1 additions and 1 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue