Skip to content

Commit

Permalink
Fix analytics notice typos
Browse files Browse the repository at this point in the history
  • Loading branch information
romanzipp committed Jan 12, 2025
1 parent 238e1cf commit 220173b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"yourDashboard": "Your Dashboard"
},
"analytics": {
"clicks": "Unique views",
"clicks": "Clicks",
"ctaCreator": "Get Creator+ to see more analytics",
"liveAvg": "Live Avg",
"livePeak": "Live Peak",
Expand Down
2 changes: 1 addition & 1 deletion src/entries/contentScript/components/AnalyticsNotice.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function AnalyticsNotice() {
titleCompact={t('analytics.titleCompact')}
color="brand-creator"
compact={compact}
preview={(isSubscribed && !!video) ? t('analytics.preview', { views: video?.analytics_aggregated.sum_unique_views || 0 }) : null}
preview={(isSubscribed && !!video) ? t('analytics.preview', { count: video?.analytics_aggregated.sum_unique_views || 0 }) : null}
>
<div className="flex justify-between">
{isSubscribed && (
Expand Down

0 comments on commit 220173b

Please sign in to comment.