remove close toast from dialogs (#15503)

This commit is contained in:
Lucy Zhang
2021-05-18 15:23:50 -04:00
committed by GitHub
parent 1040d5bc4c
commit d820137267
3 changed files with 4 additions and 12 deletions

View File

@@ -82,12 +82,12 @@ export class Workbench {
this.terminal = new Terminal(code, this.quickaccess);
// {{SQL CARBON EDIT}}
this.notificationToast = new NotificationToast(code);
this.connectionDialog = new ConnectionDialog(code, this.notificationToast);
this.connectionDialog = new ConnectionDialog(code);
this.profiler = new Profiler(code, this.quickaccess);
this.queryEditors = new QueryEditors(code, this.editors);
this.queryEditor = new QueryEditor(code);
this.sqlNotebook = new SqlNotebook(code, this.quickaccess, this.quickinput, this.editors);
this.configurePythonDialog = new ConfigurePythonDialog(code, this.notificationToast);
this.configurePythonDialog = new ConfigurePythonDialog(code);
// {{END}}
this.notebook = new Notebook(this.quickaccess, code);
}