From 06eef3c2488d122917c93a551f42833888ff3325 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Wed, 23 Feb 2022 15:04:25 -0800 Subject: [PATCH] Fix a small bug where party was not editable in state --- components/TopHeader/index.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/TopHeader/index.tsx b/components/TopHeader/index.tsx index 53cce7c1..4828f5b4 100644 --- a/components/TopHeader/index.tsx +++ b/components/TopHeader/index.tsx @@ -50,6 +50,9 @@ const TopHeader = () => { Object.keys(resetState).forEach((key) => { appState[key] = resetState[key] }) + + // Set party to be editable + appState.party.editable = true } function logout() {