From 094d2e83d6ad28278fce14842923e62d265968b8 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Wed, 23 Feb 2022 19:23:04 -0800 Subject: [PATCH] Add party details to state --- utils/appState.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/utils/appState.tsx b/utils/appState.tsx index 8ed49ba3..d3266802 100644 --- a/utils/appState.tsx +++ b/utils/appState.tsx @@ -6,6 +6,12 @@ interface AppState { party: { id: string | undefined, editable: boolean, + name: { + en: string, + jp: string + } | undefined, + description: string | undefined, + raid: Raid | undefined, element: number, extra: boolean }, @@ -30,6 +36,9 @@ export const initialAppState: AppState = { party: { id: undefined, editable: false, + name: undefined, + description: undefined, + raid: undefined, element: 0, extra: false },