Skip to content

Commit

Permalink
Change value of utils/brandName variable
Browse files Browse the repository at this point in the history
  • Loading branch information
aweell committed Sep 17, 2024
1 parent 9f08ca3 commit b9048e3
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions tokens/figma/variables.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,14 @@ export const ICON_SETS = {
[BRANDS.TU]: "Default",
};

export const BRAND_NAMES = Object.values(BRANDS);
export const BRAND_NAMES = {
[BRANDS.MOVISTAR]: "Movistar",
[BRANDS.VIVO_NEW]: "Vivo",
[BRANDS.O2_NEW]: "O2",
[BRANDS.TELEFONICA]: "Telefónica",
[BRANDS.BLAU]: "Blau",
[BRANDS.TU]: "TU",
};

export const getPaletteVariables = (
jsonData,
Expand Down Expand Up @@ -122,7 +129,7 @@ export const getNonColorVariables = (
},
{
name: "utils/brandName",
value: formatBrandName(brand),
value: BRAND_NAMES[brand],
},
],
collectionName: COLLECTION_NAMES.SKIN,
Expand Down

0 comments on commit b9048e3

Please sign in to comment.