From 66c77580239e2875662ae829d32bdee370df983c Mon Sep 17 00:00:00 2001 From: Boris Waaub Date: Wed, 22 May 2024 11:17:07 +0200 Subject: [PATCH] Adapt module name --- .../src/Resources/public/vuejs/TicketApp/store/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Bundle/ChillTicketBundle/src/Resources/public/vuejs/TicketApp/store/index.ts b/src/Bundle/ChillTicketBundle/src/Resources/public/vuejs/TicketApp/store/index.ts index 73e9d274e..cc7da9538 100644 --- a/src/Bundle/ChillTicketBundle/src/Resources/public/vuejs/TicketApp/store/index.ts +++ b/src/Bundle/ChillTicketBundle/src/Resources/public/vuejs/TicketApp/store/index.ts @@ -8,7 +8,7 @@ export type RootState = { motive: MotiveStates; ticket: TicketStates; comment: CommentStates; - user: AddresseeStates; + addressee: AddresseeStates; }; export const store = createStore({ @@ -16,6 +16,6 @@ export const store = createStore({ motive: moduleMotive, ticket: moduleTicket, comment: moduleComment, - user: moduleAddressee, + addressee: moduleAddressee, }, });