Skip to content

Commit b856d40

Browse files
author
Lasim
committed
fix(database): update baseUrl to use VITE_DEPLOYSTACK_BACKEND_URL
1 parent 0d58329 commit b856d40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/frontend/src/services/database.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class DatabaseService {
66
private storageKey: string;
77

88
constructor() {
9-
this.baseUrl = getEnv('VITE_DEPLOYSTACK_APP_URL') || 'http://localhost:3000';
9+
this.baseUrl = getEnv('VITE_DEPLOYSTACK_BACKEND_URL') || 'http://localhost:3000';
1010
this.storageKey = `deploystack_db_setup_status_${this.baseUrl}`;
1111
}
1212

0 commit comments

Comments
 (0)