From 8131b9e79d6aef9f1bf9b8c66fb075b986aa38f4 Mon Sep 17 00:00:00 2001 From: Ochieng Paul Date: Sun, 9 Mar 2025 23:04:12 +0300 Subject: [PATCH] updates --- src/platform/src/pages/account/login/index.jsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/platform/src/pages/account/login/index.jsx b/src/platform/src/pages/account/login/index.jsx index 829062b930..c9776a7903 100644 --- a/src/platform/src/pages/account/login/index.jsx +++ b/src/platform/src/pages/account/login/index.jsx @@ -62,8 +62,6 @@ const UserLogin = () => { ); const user = response.users[0]; - console.info('user', user); - if (!user.groups[0]?.grp_title) { throw new Error( 'Server error. Contact support to add you to the AirQo Organisation', @@ -76,7 +74,6 @@ const UserLogin = () => { dispatch(getIndividualUserPreferences({ identifier: user._id })), ); - console.info('preferencesResponse', preferencesResponse); let activeGroup; if (preferencesResponse.payload.success) { const preferences = preferencesResponse.payload.preferences; @@ -100,7 +97,6 @@ const UserLogin = () => { ); } - console.info('activeGroup', activeGroup); localStorage.setItem('activeGroup', JSON.stringify(activeGroup)); dispatch(setUserInfo(user));