Fix logged out saving
This commit is contained in:
parent
c3a0a99ccd
commit
d93b6e5bdf
1 changed files with 2 additions and 2 deletions
|
|
@ -131,9 +131,9 @@ const Party = (props: Props) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function createParty() {
|
async function createParty() {
|
||||||
const body = (cookies.user.userId === undefined) ? {} : {
|
const body = (cookies.userId === undefined) ? {} : {
|
||||||
party: {
|
party: {
|
||||||
user_id: cookies.user.userId
|
user_id: cookies.userId
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue