Skip to content

Commit 2f7b29c

Browse files
committed
fix: fixed project not listed
1 parent d89e2f4 commit 2f7b29c

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"type": "git",
1414
"url": "https://github.com/woung717/backtest-manager-vscode.git"
1515
},
16-
"version": "0.1.2",
16+
"version": "0.1.3",
1717
"engines": {
1818
"vscode": "^1.98.0"
1919
},

src/services/projectService.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ export class ProjectService implements IProjectService {
2424
constructor(private database: Database, private workspaceRootPath: string) {} // Updated constructor
2525

2626
async getProjects(): Promise<ProjectInfo[]> {
27-
if (!this.database.isDatabaseLoaded()) {
28-
return [];
29-
}
30-
3127
return await this.database.getProjects();
3228
}
3329

0 commit comments

Comments
 (0)