Adapt module name

This commit is contained in:
Boris Waaub 2024-05-22 11:17:07 +02:00
parent 4750d2c24e
commit 66c7758023

View File

@ -8,7 +8,7 @@ export type RootState = {
motive: MotiveStates;
ticket: TicketStates;
comment: CommentStates;
user: AddresseeStates;
addressee: AddresseeStates;
};
export const store = createStore<RootState>({
@ -16,6 +16,6 @@ export const store = createStore<RootState>({
motive: moduleMotive,
ticket: moduleTicket,
comment: moduleComment,
user: moduleAddressee,
addressee: moduleAddressee,
},
});