From d9c8966f06ada469e1bee035c825e33ef314326b Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 18 Jun 2023 01:18:16 -0700 Subject: [PATCH] Show Extra grids based on selected raid --- components/weapon/WeaponGrid/index.tsx | 37 ++++++++++++++------------ 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/components/weapon/WeaponGrid/index.tsx b/components/weapon/WeaponGrid/index.tsx index 44133528..d5107f3c 100644 --- a/components/weapon/WeaponGrid/index.tsx +++ b/components/weapon/WeaponGrid/index.tsx @@ -377,23 +377,26 @@ const WeaponGrid = (props: Props) => { const extraElement = ( - - + {appState.party.raid && appState.party.raid.group.extra && ( + + )} + {appState.party.raid && appState.party.raid.group.guidebooks && ( + + )} )