diff --git a/components/dashboard/GoalStats.tsx b/components/dashboard/GoalStats.tsx index f6303aa..291d61c 100644 --- a/components/dashboard/GoalStats.tsx +++ b/components/dashboard/GoalStats.tsx @@ -25,9 +25,9 @@ export default function GoalStats({ goalCounts, siteId, dateRange }: GoalStatsPr -
- {hasData ? ( - list.map((row) => ( + {hasData ? ( +
+ {list.map((row) => (
- )) - ) : ( -
-
-
- -
-

- Need help tracking goals? -

-

- Add pulse.track('event_name') where actions happen on your site, then see counts here. Check our guide for step-by-step instructions. -

- - Read documentation - - -
+ ))} +
+ ) : ( +
+
+
- )} -
+

+ Need help tracking goals? +

+

+ Add pulse.track('event_name') where actions happen on your site, then see counts here. Check our guide for step-by-step instructions. +

+ + Read documentation + + +
+ )}
) }