changed the localhost whitelabel to use the staging whitelabel

This commit is contained in:
csawatzky 2026-02-26 10:24:57 -06:00
parent b5adba8f93
commit 74e7371792

View file

@ -337,7 +337,7 @@ export function getWhitelabel(): WhiteLabel {
return BXT_WHITE_LABEL; return BXT_WHITE_LABEL;
} }
if (window.location.origin.includes("localhost")) { if (window.location.origin.includes("localhost")) {
return MIPCA_WHITE_LABEL; return STAGING_WHITELABEL;
} }
if (window.location.origin.includes("staging") || import.meta.env.VITE_LOCAL_STAGING=='true') { if (window.location.origin.includes("staging") || import.meta.env.VITE_LOCAL_STAGING=='true') {
return STAGING_WHITELABEL; return STAGING_WHITELABEL;