Skip to content

Commit 25968ae

Browse files
Fix typing error
1 parent 9225542 commit 25968ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/scenes/web-analytics/WebAnalyticsDashboard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ const healthTab = (featureFlags: FeatureFlagsSet): { key: ProductTab; label: JSX
466466
]
467467
}
468468

469-
const liveTab = (featureFlags: FeatureFlagsSet): { key: ProductTab; label: React.ReactNode; link: string }[] => {
469+
const liveTab = (featureFlags: FeatureFlagsSet): { key: ProductTab; label: string | JSX.Element; link: string }[] => {
470470
if (!featureFlags[FEATURE_FLAGS.WEB_ANALYTICS_LIVE_METRICS]) {
471471
return []
472472
}

0 commit comments

Comments
 (0)