From 272b5157e1b6ae0c30a03197006a76d028c01438 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Mon, 26 Dec 2022 00:39:18 -0800 Subject: [PATCH] Fix bug where the first weapon would not display --- components/WeaponGrid/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/WeaponGrid/index.tsx b/components/WeaponGrid/index.tsx index 511709aa..d5e337f7 100644 --- a/components/WeaponGrid/index.tsx +++ b/components/WeaponGrid/index.tsx @@ -96,7 +96,7 @@ const WeaponGrid = (props: Props) => { if (props.pushHistory) props.pushHistory(`/p/${party.shortcode}`) saveWeapon(party.id, weapon, position).then((response) => - storeGridWeapon(response.data) + storeGridWeapon(response.data.grid_weapon) ) }) } else {