Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit 5f3b5a0

Browse files
Hubert KosterHubert Koster
authored andcommitted
chore: fixing endpoint for localhost and qa
1 parent 65c4538 commit 5f3b5a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/utils/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,10 @@ export const getServerConfig = () => {
127127
if (isBrowser) {
128128
const config_server_url = localStorage.getItem('config.server_url');
129129
const config_app_id = localStorage.getItem('config.app_id');
130+
console.log(config_server_url);
130131
if (config_app_id && config_server_url) {
131132
return {
132-
serverUrl: DEFAULT_WS_SERVER,
133+
serverUrl: config_server_url,
133134
appId: config_app_id,
134135
oauth: config_server_url,
135136
};

0 commit comments

Comments
 (0)