File tree Expand file tree Collapse file tree 3 files changed +1
-9
lines changed
Sugggestion/Recommendation Expand file tree Collapse file tree 3 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -38,9 +38,6 @@ export const AnalyzePage = ({
38
38
return false ;
39
39
}
40
40
41
- console . log ( 'problem.fullFilePath: ' , problem . fullFilePath ) ;
42
- console . log ( 'currentWorkSpaceProject: ' , currentWorkSpaceProject ) ;
43
-
44
41
if ( problem . fullFilePath === currentWorkSpaceProject ) {
45
42
return true ;
46
43
}
@@ -55,9 +52,6 @@ export const AnalyzePage = ({
55
52
return false ;
56
53
}
57
54
58
- console . log ( 'currentEditor: ' , currentEditor ) ;
59
- console . log ( 'splitString: ' , splitString ) ;
60
-
61
55
if ( splitString !== currentEditor && problem . isDiscarded === false ) {
62
56
return true ;
63
57
}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ interface RecommendationProps {
7
7
text : string ;
8
8
}
9
9
export const Recommendation = ( { text } : RecommendationProps ) : JSX . Element => {
10
- const markedDownText = `~~~python\n ${ text } ~~~` ;
10
+ const markedDownText = `~~~${ text } ~~~` ;
11
11
12
12
return (
13
13
< >
Original file line number Diff line number Diff line change @@ -88,8 +88,6 @@ const AccountSettingProvider = ({ children }: Props): JSX.Element => {
88
88
currentFile,
89
89
} = payload ;
90
90
91
- console . log ( 'INIT_DATA: ' , payload ) ;
92
-
93
91
setApplicationState ( ApplicationWebviewState . ANALYZE_MODE ) ;
94
92
95
93
if ( hasOpenTextDocuments ) {
You can’t perform that action at this time.
0 commit comments