From fe14c38fd97c4d4c26afc5121c33f7d462e79e1f Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Thu, 24 Feb 2022 18:15:23 -0800 Subject: [PATCH] Fix name in state and add detailsVisible flag --- utils/appState.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/utils/appState.tsx b/utils/appState.tsx index d3266802..7b7d8592 100644 --- a/utils/appState.tsx +++ b/utils/appState.tsx @@ -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,