Skip to content

Commit

Permalink
[QA-1811] Fix tier change notif capitalization (#10400)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle-Shanks authored Nov 8, 2024
1 parent a9c8ea2 commit 8e199ab
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
TierChangeNotification as TierChangeNotificationType,
BadgeTierInfo
} from '@audius/common/store'
import { capitalize } from 'lodash'

import { audioTierMapPng } from 'components/user-badges/UserBadges'
import { useSelector } from 'utils/reducer'
Expand Down Expand Up @@ -68,8 +69,8 @@ export const TierChangeNotification = (props: TierChangeNotificationProps) => {
</NotificationTitle>
</NotificationHeader>
<NotificationBody>
{messages.reached} {tier} {messages.having} {humanReadableAmount}{' '}
{messages.audio} {messages.accessInfo}
{messages.reached} {capitalize(tier)} {messages.having}{' '}
{humanReadableAmount} {messages.audio} {messages.accessInfo}
</NotificationBody>
<TwitterShareButton
type='static'
Expand Down

0 comments on commit 8e199ab

Please sign in to comment.