From bf53c423dc9686cff015fbd80312481c5531489f Mon Sep 17 00:00:00 2001 From: AntGe Date: Tue, 29 Oct 2024 03:10:11 +0200 Subject: [PATCH] removed some debuggers --- src/components/OAuth/index.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/components/OAuth/index.tsx b/src/components/OAuth/index.tsx index 0bc9283..6bcad6f 100644 --- a/src/components/OAuth/index.tsx +++ b/src/components/OAuth/index.tsx @@ -189,8 +189,6 @@ export const useOAuthSocials = () => { if (error) { onFailure(error); } else { - // eslint-disable-next-line no-debugger - debugger; xCleanUp(xIntervalRef); const response = await axios.post( `${environment.apiUrl}/aut/config/oauth2AccessTokenX`, @@ -208,8 +206,6 @@ export const useOAuthSocials = () => { } } } catch (genericError) { - // eslint-disable-next-line no-debugger - debugger; onFailure(genericError); console.error(genericError); } @@ -247,8 +243,6 @@ export const useOAuthSocials = () => { } ); - // eslint-disable-next-line no-debugger - debugger; setAuthenticating(false); popupRef.current.close(); onSuccess(response.data);