Fix bug with saving unauth grids

This commit is contained in:
Justin Edmund 2022-01-30 03:09:29 -08:00
parent d56bdb58f8
commit e046b0ef42

View file

@ -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
}