defining colors as strings to index them correctly
This commit is contained in:
parent
6329378586
commit
71a8bc0849
1 changed files with 3 additions and 3 deletions
|
|
@ -111,8 +111,8 @@ export function isBXT(): boolean {
|
|||
|
||||
const ADAPTIVE_AGRICULTURE_WHITE_LABEL: WhiteLabel = {
|
||||
name: "Adaptive Agriculture",
|
||||
primaryColour: green,
|
||||
secondaryColour: yellow,
|
||||
primaryColour: "green",
|
||||
secondaryColour: "yellow",
|
||||
signatureColour: "#272727",
|
||||
signatureAccentColour: "#fff",
|
||||
auth0ClientId: import.meta.env.REACT_APP_AUTH0_ADAPTIVE_AGRICULTURE_CLIENT_ID,
|
||||
|
|
@ -274,7 +274,7 @@ export function getWhitelabel(): WhiteLabel {
|
|||
return whitelabels.get(key) as WhiteLabel;
|
||||
}
|
||||
}
|
||||
return DEFAULT_WHITELABEL;
|
||||
return ADAPTIVE_AGRICULTURE_WHITE_LABEL;
|
||||
}
|
||||
|
||||
export function getPrimaryColour(): any {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue