Skip to content

Commit

Permalink
removed some debuggers
Browse files Browse the repository at this point in the history
  • Loading branch information
AntGe committed Oct 29, 2024
1 parent 2d3a22b commit bf53c42
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/components/OAuth/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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`,
Expand All @@ -208,8 +206,6 @@ export const useOAuthSocials = () => {
}
}
} catch (genericError) {
// eslint-disable-next-line no-debugger
debugger;
onFailure(genericError);
console.error(genericError);
}
Expand Down Expand Up @@ -247,8 +243,6 @@ export const useOAuthSocials = () => {
}
);

// eslint-disable-next-line no-debugger
debugger;
setAuthenticating(false);
popupRef.current.close();
onSuccess(response.data);
Expand Down

0 comments on commit bf53c42

Please sign in to comment.