From e43ecb2c00cc41060e54507e928c3463e60af84a Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 2 Jul 2023 03:31:30 -0700 Subject: [PATCH] Fix character conflict modal only appearing once We weren't changing the modal open state to false --- components/character/CharacterGrid/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/character/CharacterGrid/index.tsx b/components/character/CharacterGrid/index.tsx index deb914f0..018b11ca 100644 --- a/components/character/CharacterGrid/index.tsx +++ b/components/character/CharacterGrid/index.tsx @@ -180,6 +180,7 @@ const CharacterGrid = (props: Props) => { setPosition(-1) setConflicts([]) setIncoming(undefined) + setModalOpen(false) } async function removeCharacter(id: string) {