We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d89e2f4 commit 2f7b29cCopy full SHA for 2f7b29c
package.json
@@ -13,7 +13,7 @@
13
"type": "git",
14
"url": "https://github.com/woung717/backtest-manager-vscode.git"
15
},
16
- "version": "0.1.2",
+ "version": "0.1.3",
17
"engines": {
18
"vscode": "^1.98.0"
19
src/services/projectService.ts
@@ -24,10 +24,6 @@ export class ProjectService implements IProjectService {
24
constructor(private database: Database, private workspaceRootPath: string) {} // Updated constructor
25
26
async getProjects(): Promise<ProjectInfo[]> {
27
- if (!this.database.isDatabaseLoaded()) {
28
- return [];
29
- }
30
-
31
return await this.database.getProjects();
32
}
33
0 commit comments