From 7b7c0e1e2cfdefa24447348a4d8dcfc8c6c8825c Mon Sep 17 00:00:00 2001 From: Yash Date: Fri, 23 Jan 2026 23:30:57 +0530 Subject: [PATCH] replaced Container with the Row --- src/components/metrics/UniqueSessions.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/metrics/UniqueSessions.tsx b/src/components/metrics/UniqueSessions.tsx index 8f0cba3b..77673040 100644 --- a/src/components/metrics/UniqueSessions.tsx +++ b/src/components/metrics/UniqueSessions.tsx @@ -1,4 +1,4 @@ -import { Container, Loading, Text } from '@umami/react-zen'; +import { Loading, Row, Text } from '@umami/react-zen'; import { useWebsiteStatsQuery } from '@/components/hooks'; interface UniqueSessionsProps { @@ -22,19 +22,19 @@ const UniqueSessions = ({ websiteId }: UniqueSessionsProps) => { } return ( - + {data?.visitors ?? 0} ); }; return ( - + Unique Sessions: {renderContent()} - + ); };