From ec2c2755bedbbe2e6e708f05717d7bc81ff989c2 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Mon, 2 Jan 2023 21:43:57 -0800 Subject: [PATCH] Fix more type errors --- components/WeaponUnit/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/WeaponUnit/index.tsx b/components/WeaponUnit/index.tsx index 78d9a9a1..58cfd80b 100644 --- a/components/WeaponUnit/index.tsx +++ b/components/WeaponUnit/index.tsx @@ -355,7 +355,7 @@ const WeaponUnit = (props: Props) => { const weapon = gridWeapon.object return ( - weapon.ax > 0 || + weapon.ax || weapon.awakening || (weapon.series && [2, 3, 17, 22, 24].includes(weapon.series)) )