Fix bug with saving unauth grids
This commit is contained in:
parent
d56bdb58f8
commit
e046b0ef42
1 changed files with 1 additions and 1 deletions
|
|
@ -149,7 +149,7 @@ const Party = (props: Props) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function createParty() {
|
async function createParty() {
|
||||||
const body = (cookies.user.userId === undefined) ? {
|
const body = (!cookies.user) ? {
|
||||||
party: {
|
party: {
|
||||||
is_extra: extra
|
is_extra: extra
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue