From 983323ceef6bab7f8cec6c4eb7d3b6bf5a103711 Mon Sep 17 00:00:00 2001 From: Johnny Date: Sun, 9 Feb 2025 11:44:15 +0800 Subject: [PATCH] chore: remove debug code --- web/src/store/v2/user.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/web/src/store/v2/user.ts b/web/src/store/v2/user.ts index a3e7e11f..c1b41def 100644 --- a/web/src/store/v2/user.ts +++ b/web/src/store/v2/user.ts @@ -68,7 +68,6 @@ const userStore = (() => { const fetchInboxes = async () => { const { inboxes } = await inboxServiceClient.listInboxes({}); state.inboxes = inboxes; - console.log("inboxes", inboxes); }; const updateInbox = async (inbox: Partial, updateMask: string[]) => {