From f108262622c0283d1b288544ebcd3e1a8f76cc22 Mon Sep 17 00:00:00 2001 From: Nathaniel Tampus Date: Mon, 16 Jan 2023 14:12:04 +0800 Subject: [PATCH] remove extra log --- client/src/utils/auth.ts | 1 - 1 file changed, 1 deletion(-) 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;