Fix a small bug where party was not editable in state

This commit is contained in:
Justin Edmund 2022-02-23 15:04:25 -08:00
parent 520a4dd3f5
commit 06eef3c248

View file

@ -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() {