Skip to content

Commit

Permalink
AXON-72: remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
cabella-dot committed Feb 14, 2025
1 parent 4131cad commit 60b4c4f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/react/atlascode/onboarding/OnboardingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ export const OnboardingPage: React.FunctionComponent = () => {
const message = event.data;
if (message.command === CommonMessageType.UpdateFeatureFlags) {
const featureValue = message.featureFlags[Features.EnableAuthUI];
console.log(`FeatureGates: received by OnboardingPage - ${Features.EnableAuthUI} -> ${featureValue}`);
setUseAuthUI(featureValue);
}
});
Expand Down Expand Up @@ -167,8 +166,6 @@ export const OnboardingPage: React.FunctionComponent = () => {
}, [bitbucketSignInFlow, controller, handleCloudSignIn, handleNext, handleServerSignIn]);

const executeJiraSignInFlow = useCallback(() => {
console.log(jiraSignInFlow);

switch (jiraSignInFlow) {
case 'jira-setup-radio-cloud':
handleCloudSignIn(ProductJira);
Expand Down

0 comments on commit 60b4c4f

Please sign in to comment.