diff --git a/apps/dashboard/src/components/overview/live-counter/live-counter.tsx b/apps/dashboard/src/components/overview/live-counter/live-counter.tsx index 362294fe..dc4908d3 100644 --- a/apps/dashboard/src/components/overview/live-counter/live-counter.tsx +++ b/apps/dashboard/src/components/overview/live-counter/live-counter.tsx @@ -1,6 +1,7 @@ 'use client'; import { useRef, useState } from 'react'; +import { TooltipComplete } from '@/components/tooltip-complete'; import { Tooltip, TooltipContent, @@ -43,8 +44,8 @@ export default function LiveCounter({ data = 0, projectId }: LiveCounterProps) { }); return ( - - + +
- - -

{counter} unique visitors last 5 minutes

-

Click to see activity for the last 30 minutes

-
- +
+ ); }