From e046b0ef429012a4956f6860b95a7ed2ec0e286d Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 30 Jan 2022 03:09:29 -0800 Subject: [PATCH] Fix bug with saving unauth grids --- components/Party/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Party/index.tsx b/components/Party/index.tsx index d0c8b73c..000fbbd4 100644 --- a/components/Party/index.tsx +++ b/components/Party/index.tsx @@ -149,7 +149,7 @@ const Party = (props: Props) => { } async function createParty() { - const body = (cookies.user.userId === undefined) ? { + const body = (!cookies.user) ? { party: { is_extra: extra }