diff --git a/src/components/Analyze/index.tsx b/src/components/Analyze/index.tsx index b75652c..e4db65d 100644 --- a/src/components/Analyze/index.tsx +++ b/src/components/Analyze/index.tsx @@ -38,9 +38,6 @@ export const AnalyzePage = ({ return false; } - console.log('problem.fullFilePath: ', problem.fullFilePath); - console.log('currentWorkSpaceProject: ', currentWorkSpaceProject); - if (problem.fullFilePath === currentWorkSpaceProject) { return true; } @@ -55,9 +52,6 @@ export const AnalyzePage = ({ return false; } - console.log('currentEditor: ', currentEditor); - console.log('splitString: ', splitString); - if (splitString !== currentEditor && problem.isDiscarded === false) { return true; } diff --git a/src/components/Sugggestion/Recommendation/index.tsx b/src/components/Sugggestion/Recommendation/index.tsx index fb10ae3..49f4bed 100644 --- a/src/components/Sugggestion/Recommendation/index.tsx +++ b/src/components/Sugggestion/Recommendation/index.tsx @@ -7,7 +7,7 @@ interface RecommendationProps { text: string; } export const Recommendation = ({ text }: RecommendationProps): JSX.Element => { - const markedDownText = `~~~python\n${text}~~~`; + const markedDownText = `~~~${text}~~~`; return ( <> diff --git a/src/context/UserContext.tsx b/src/context/UserContext.tsx index 8fe050a..5a77b2f 100644 --- a/src/context/UserContext.tsx +++ b/src/context/UserContext.tsx @@ -88,8 +88,6 @@ const AccountSettingProvider = ({ children }: Props): JSX.Element => { currentFile, } = payload; - console.log('INIT_DATA: ', payload); - setApplicationState(ApplicationWebviewState.ANALYZE_MODE); if (hasOpenTextDocuments) {