Skip to content

Commit 271563b

Browse files
refactor: correct variable
1 parent 82aba20 commit 271563b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/OpenSign/src/constant/const.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const isEnableSubscription =
99
process.env.REACT_APP_ENABLE_SUBSCRIPTION?.toLowerCase() === "true"
1010
? true
1111
: false;
12-
export const isStaging = "http://localhost:3001";
13-
// window.location.origin === "https://staging-app.opensignlabs.com";
12+
export const isStaging =
13+
window.location.origin === "https://staging-app.opensignlabs.com";
1414
export const isPublicStaging =
1515
window.location.origin === "https://staging.opensign.me";

0 commit comments

Comments
 (0)