Skip to content

Commit

Permalink
fix: product listing swag level 2 flag (#231)
Browse files Browse the repository at this point in the history
Update conditional code to work with the new string of swag code level 2
  • Loading branch information
greglobinski authored and jlengstorf committed Jan 11, 2019
1 parent ede5523 commit fb17cd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ProductListing/ProductListingItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ const CodeEligibility = styled(`div`)`
span:last-child {
background: ${props =>
props.freeWith === 'LEVEL2' ? colors.lemon : colors.brand};
props.freeWith === 'HOLYBUCKETS' ? colors.lemon : colors.brand};
color: ${props =>
props.freeWith === 'LEVEL2' ? colors.brand : colors.lemon};
props.freeWith === 'HOLYBUCKETS' ? colors.brand : colors.lemon};
flex-basis: 65%;
font-family: ${fonts.heading};
font-size: 1rem;
Expand Down

0 comments on commit fb17cd6

Please sign in to comment.