Skip to content

Commit

Permalink
change colour producttag
Browse files Browse the repository at this point in the history
  • Loading branch information
wouter1975 committed Oct 16, 2023
1 parent 8b25c5e commit 0865f4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function WFOProductBlockBadge({
badgeColor: toSecondaryColor(success),
textColor: successText,
};
case BadgeType.PRODUCTTAG:
case BadgeType.PRODUCTBLOCKTAG:
case BadgeType.PRODUCTBLOCK:
return {
badgeColor: toSecondaryColor(primary),
Expand All @@ -50,7 +50,7 @@ export function WFOProductBlockBadge({
badgeColor: toSecondaryColor(warning),
textColor: warningText,
};
case BadgeType.PRODUCTBLOCKTAG:
case BadgeType.PRODUCTTAG:
default:
return {
badgeColor: lightShade,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export const WFOProductsPage = () => {
{productBlocks.map((block, index) => (
<WFOProductBlockBadge
key={index}
badgeType={BadgeType.PRODUCTTAG}
badgeType={BadgeType.PRODUCTBLOCK}
>
{block.name}
</WFOProductBlockBadge>
Expand Down

0 comments on commit 0865f4d

Please sign in to comment.