From 314bbee7172bd3f430c38227598901576a3bc87e Mon Sep 17 00:00:00 2001 From: Mike Cao Date: Fri, 29 Mar 2024 09:36:07 -0700 Subject: [PATCH] Fixed funnel report parameters not showing. --- src/app/(main)/reports/funnel/FunnelParameters.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/app/(main)/reports/funnel/FunnelParameters.tsx b/src/app/(main)/reports/funnel/FunnelParameters.tsx index 7c4aa845..e3eab41c 100644 --- a/src/app/(main)/reports/funnel/FunnelParameters.tsx +++ b/src/app/(main)/reports/funnel/FunnelParameters.tsx @@ -72,7 +72,11 @@ export function FunnelParameters() { }> {urls.map(url => { - return handleRemoveUrl(url)} />; + return ( + handleRemoveUrl(url)}> + {url} + + ); })}