Skip to content

Commit 8b3add8

Browse files
committed
fix: remove title of importing status
1 parent 5b854bc commit 8b3add8

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

extensions/ql-vscode/src/databases/local-databases-ui.ts

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -364,14 +364,9 @@ export class DatabaseUI extends DisposableObject {
364364
}
365365

366366
private async handleChooseDatabaseFoldersParentFromPalette(): Promise<void> {
367-
return withProgress(
368-
async (progress) => {
369-
await this.chooseDatabasesParentFolder(progress);
370-
},
371-
{
372-
title: "Importing all databases contained in parent folder",
373-
},
374-
);
367+
return withProgress(async (progress) => {
368+
await this.chooseDatabasesParentFolder(progress);
369+
});
375370
}
376371

377372
private async handleSetDefaultTourDatabase(): Promise<void> {

0 commit comments

Comments
 (0)