diff --git a/frontend/app/components/Funnels/FunnelWidget/FunnelWidget.tsx b/frontend/app/components/Funnels/FunnelWidget/FunnelWidget.tsx index 3a4365876..e57835d8a 100644 --- a/frontend/app/components/Funnels/FunnelWidget/FunnelWidget.tsx +++ b/frontend/app/components/Funnels/FunnelWidget/FunnelWidget.tsx @@ -88,13 +88,16 @@ function FunnelWidget(props: Props) { const viewType = metric?.viewType; const isHorizontal = viewType === 'columnChart'; const noEvents = metric.series[0].filter.filters.length === 0; + const isUsers = metric?.metricFormat === 'userCount'; return ( - {noEvents ? 'Select an event to start seeing the funnel' : 'No data available for the selected period.'} + {noEvents + ? 'Select an event to start seeing the funnel' + : 'No data available for the selected period.'} } show={!stages || stages.length === 0} @@ -142,7 +145,7 @@ function FunnelWidget(props: Props) {
Total conversion