Akita state management for Angular - model changes errors #1075
Unanswered
YonatanNechmad
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I trying to refactor akita state management model for a specific component in my application.
When I change the model and load the app again the current state doesn't familiar with the new model properties and throw error.
example :
ui-student.model.ts:
..
export interface StudentUiStateModel {
name: string;
}
..
change to:
ui-student.model.ts:
..
export interface StudentUiStateModel {
nameAndFamily: string[];
}
..
Beta Was this translation helpful? Give feedback.
All reactions