remove extra log

This commit is contained in:
Nathaniel Tampus
2023-01-16 14:12:04 +08:00
parent bec3ac1fca
commit f108262622

View File

@@ -21,7 +21,6 @@ export const setGuestSession = async (name: string) => {
},
body: JSON.stringify({ name })
});
console.log(res);
if (res.status === 201) {
const user: User = await res.json();
return user;