Skip to content

Commit 07009f8

Browse files
committed
fix: remove console log from clearMessages method in code editor component
Signed-off-by: Manuel Abascal <mjabascal10@gmail.com>
1 parent b0dff17 commit 07009f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/app/shared/components/code-editor/code-editor.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export class CodeEditorComponent implements OnInit, OnDestroy, ControlValueAcces
159159
}
160160

161161
clearMessages(): void {
162-
console.log('Query:', this.extractIndexPattern(this.sqlQuery));
162+
this.extractIndexPattern(this.sqlQuery);
163163
this.errorMessage = '';
164164
this.successMessage = '';
165165
}

0 commit comments

Comments
 (0)