Skip to content

Commit 220173b

Browse files
committed
Fix analytics notice typos
1 parent 238e1cf commit 220173b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

locales/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"yourDashboard": "Your Dashboard"
1616
},
1717
"analytics": {
18-
"clicks": "Unique views",
18+
"clicks": "Clicks",
1919
"ctaCreator": "Get Creator+ to see more analytics",
2020
"liveAvg": "Live Avg",
2121
"livePeak": "Live Peak",

src/entries/contentScript/components/AnalyticsNotice.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function AnalyticsNotice() {
9999
titleCompact={t('analytics.titleCompact')}
100100
color="brand-creator"
101101
compact={compact}
102-
preview={(isSubscribed && !!video) ? t('analytics.preview', { views: video?.analytics_aggregated.sum_unique_views || 0 }) : null}
102+
preview={(isSubscribed && !!video) ? t('analytics.preview', { count: video?.analytics_aggregated.sum_unique_views || 0 }) : null}
103103
>
104104
<div className="flex justify-between">
105105
{isSubscribed && (

0 commit comments

Comments
 (0)