fixed streamline whiteLabel colors

This commit is contained in:
Carter 2025-06-11 15:42:30 -06:00
parent af518b58a8
commit b4204a1998
2 changed files with 5 additions and 1 deletions

View file

@ -113,7 +113,7 @@ const BXT_WHITE_LABEL: WhiteLabel = {
const STREAMLINE_WHITE_LABEL: WhiteLabel = {
name: "Streamline",
primaryColour: "black",
primaryColour: "grey",
// primaryColour: "#0000FF",
secondaryColour: "yellow",
// secondaryColour: "#FFFF00",
@ -299,6 +299,9 @@ export function getWhitelabel(): WhiteLabel {
if (window.location.origin.includes("bxt-dev")) {
return BXT_WHITE_LABEL;
}
if (window.location.origin.includes("localhost")) {
return STREAMLINE_WHITE_LABEL;
}
if (window.location.origin.includes("staging") || import.meta.env.VITE_LOCAL_STAGING=='true') {
return STAGING_WHITELABEL;
}