Fix name in state and add detailsVisible flag
This commit is contained in:
parent
e00a07d10c
commit
fe14c38fd9
1 changed files with 3 additions and 4 deletions
|
|
@ -6,10 +6,8 @@ interface AppState {
|
|||
party: {
|
||||
id: string | undefined,
|
||||
editable: boolean,
|
||||
name: {
|
||||
en: string,
|
||||
jp: string
|
||||
} | undefined,
|
||||
detailsVisible: boolean,
|
||||
name: string | undefined,
|
||||
description: string | undefined,
|
||||
raid: Raid | undefined,
|
||||
element: number,
|
||||
|
|
@ -36,6 +34,7 @@ export const initialAppState: AppState = {
|
|||
party: {
|
||||
id: undefined,
|
||||
editable: false,
|
||||
detailsVisible: false,
|
||||
name: undefined,
|
||||
description: undefined,
|
||||
raid: undefined,
|
||||
|
|
|
|||
Loading…
Reference in a new issue