Skip to content

Commit

Permalink
feat(settings): fixed labels for tier 0
Browse files Browse the repository at this point in the history
  • Loading branch information
milan-bc committed Feb 23, 2021
1 parent 34847f7 commit 4d6b1b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const getItemBadgeStatus = (
type: ITEMS,
isEligible: boolean = false
) => {
return (tier && TIERS[tier][type]) || isEligible ? (
return (tier !== undefined && TIERS[tier][type]) || isEligible ? (
<CartridgeWrapper>
<SuccessCartridge fontSize='12px'>
<FormattedMessage
Expand Down

0 comments on commit 4d6b1b1

Please sign in to comment.