Save raids in state
This commit is contained in:
parent
ed59762c71
commit
499dde433e
1 changed files with 4 additions and 2 deletions
|
|
@ -27,7 +27,8 @@ interface AppState {
|
|||
},
|
||||
search: {
|
||||
sourceItem: GridCharacter | GridWeapon | GridSummon | undefined
|
||||
}
|
||||
},
|
||||
raids: Raid[]
|
||||
}
|
||||
|
||||
export const initialAppState: AppState = {
|
||||
|
|
@ -55,7 +56,8 @@ export const initialAppState: AppState = {
|
|||
},
|
||||
search: {
|
||||
sourceItem: undefined
|
||||
}
|
||||
},
|
||||
raids: []
|
||||
}
|
||||
|
||||
export const appState = proxy(initialAppState)
|
||||
Loading…
Reference in a new issue