diff --git a/packages/web/src/components/notification/Notification/TierChangeNotification.tsx b/packages/web/src/components/notification/Notification/TierChangeNotification.tsx
index ed5a74d282a..04e387a9b3d 100644
--- a/packages/web/src/components/notification/Notification/TierChangeNotification.tsx
+++ b/packages/web/src/components/notification/Notification/TierChangeNotification.tsx
@@ -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'
@@ -68,8 +69,8 @@ export const TierChangeNotification = (props: TierChangeNotificationProps) => {
- {messages.reached} {tier} {messages.having} {humanReadableAmount}{' '}
- {messages.audio} {messages.accessInfo}
+ {messages.reached} {capitalize(tier)} {messages.having}{' '}
+ {humanReadableAmount} {messages.audio} {messages.accessInfo}