diff --git a/client/src/utils/auth.ts b/client/src/utils/auth.ts index e454c6d..d66188a 100644 --- a/client/src/utils/auth.ts +++ b/client/src/utils/auth.ts @@ -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;