From 4bc8c73d665bd0cf5d9f53e9e2926809c807cbe2 Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Tue, 14 Nov 2023 09:22:20 +0100 Subject: [PATCH] div in usagestats --- app/components/usage-stats/UsageStats.tsx | 40 ++++++++++++----------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/app/components/usage-stats/UsageStats.tsx b/app/components/usage-stats/UsageStats.tsx index 960db156c..38fb13944 100644 --- a/app/components/usage-stats/UsageStats.tsx +++ b/app/components/usage-stats/UsageStats.tsx @@ -46,31 +46,33 @@ const UsageStats: React.FC<{ onClose: () => void }> = ({ onClose }) => {

Number of events: {signInCount}

- {showDrillDown && ( - +
+ {showDrillDown && ( - {/* ... other UI elements ... */} + + {/* ... other UI elements ... */} - - - - - - - - - {Object.entries(userDetails).map(([email, count]) => ( - - - +
EmailCount
{email}{count}
+ + + + - ))} - -
EmailCount
- )} + + + {Object.entries(userDetails).map(([email, count]) => ( + + {email} + {count} + + ))} + + + )} +
);