From 74e737179281641e728e67aa15aa5dc5cd74c9d7 Mon Sep 17 00:00:00 2001 From: csawatzky Date: Thu, 26 Feb 2026 10:24:57 -0600 Subject: [PATCH] changed the localhost whitelabel to use the staging whitelabel --- src/services/whiteLabel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/whiteLabel.ts b/src/services/whiteLabel.ts index ca8bbf1..c9346d4 100644 --- a/src/services/whiteLabel.ts +++ b/src/services/whiteLabel.ts @@ -337,7 +337,7 @@ export function getWhitelabel(): WhiteLabel { return BXT_WHITE_LABEL; } 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') { return STAGING_WHITELABEL;