fix: remove title of importing status

This commit is contained in:
reito
2024-11-19 23:58:18 +08:00
parent 5b854bc1cd
commit 8b3add82b1

View File

@@ -364,14 +364,9 @@ export class DatabaseUI extends DisposableObject {
}
private async handleChooseDatabaseFoldersParentFromPalette(): Promise<void> {
return withProgress(
async (progress) => {
await this.chooseDatabasesParentFolder(progress);
},
{
title: "Importing all databases contained in parent folder",
},
);
return withProgress(async (progress) => {
await this.chooseDatabasesParentFolder(progress);
});
}
private async handleSetDefaultTourDatabase(): Promise<void> {