Skip to content

Commit

Permalink
chore: resolved pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
shayan-deriv committed Jun 19, 2024
1 parent a331375 commit b6e8edb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/constants/url.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ export const getOauthUrl = () => {
const hostname = window.location.hostname;

const existingAppId = LocalStorageUtils.getValue(LocalStorageConstants.configAppId);
const existingServerUrl = localStorage.getItem(LocalStorageConstants.configServerURL.toString());
const existingServerUrl = LocalStorageUtils.getValue(LocalStorageConstants.configServerURL);
// since we don't have official app_id for staging,
// we will use the red server with app_id=62019 for the staging-p2p.deriv.com for now
// to fix the login issue
if ((!existingAppId || !existingServerUrl) && origin === URLConstants.derivP2pStaging) {
if (!/localhost/.test(origin) && (!existingAppId || !existingServerUrl)) {
localStorage.setItem(
LocalStorageConstants.configServerURL.toString(),
SocketURL[origin as keyof typeof SocketURL]
Expand All @@ -38,8 +38,8 @@ export const getOauthUrl = () => {
);
}

const storedServerUrl = localStorage.getItem(LocalStorageConstants.configServerURL.toString());
const serverUrl = /qa/.test(storedServerUrl || '') ? storedServerUrl : 'oauth.deriv.com';
const storedServerUrl = LocalStorageUtils.getValue(LocalStorageConstants.configServerURL);
const serverUrl = /qa/.test(String(storedServerUrl)) ? storedServerUrl : 'oauth.deriv.com';

const appId = LocalStorageUtils.getValue(LocalStorageConstants.configAppId);

Expand Down

0 comments on commit b6e8edb

Please sign in to comment.