From 499dde433e740be94f2e8e440c2e711df7866589 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 26 Feb 2022 15:53:32 -0800 Subject: [PATCH] Save raids in state --- utils/appState.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/utils/appState.tsx b/utils/appState.tsx index 7b7d8592..e8059c4a 100644 --- a/utils/appState.tsx +++ b/utils/appState.tsx @@ -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) \ No newline at end of file