Skip to content

Commit

Permalink
fix: update ws server url (#1590)
Browse files Browse the repository at this point in the history
  • Loading branch information
maryia-deriv authored May 3, 2024
1 parent 5337403 commit 390f14a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function getLanguageStorage() {
}
function getServerUrl() {
const local = localStorage.getItem('config.server_url');
return `wss://${local || 'frontend.binaryws.com'}/websockets/v3`;
return `wss://${local || 'red.derivws.com'}/websockets/v3`;
}
const chartId = '1';
const appId = localStorage.getItem('config.app_id') || 12812;
Expand Down

0 comments on commit 390f14a

Please sign in to comment.