From 56b1d99ac16f164b6c92a834a15d77c9ff697357 Mon Sep 17 00:00:00 2001 From: Ayushi Kuhite Date: Tue, 21 Apr 2026 15:43:01 +0530 Subject: [PATCH] display user names instead of usernames in breakdown bars --- components/breakdown-bars.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/breakdown-bars.tsx b/components/breakdown-bars.tsx index a87c5f7..2f9292b 100644 --- a/components/breakdown-bars.tsx +++ b/components/breakdown-bars.tsx @@ -43,14 +43,14 @@ export function BreakdownBars({ user1, user2 }: Props) {
{t(metricLabel)} - {user1.username}: {user1Value} | {user2.username}:{" "} + {user1.name}: {user1Value} | {user2.name}:{" "} {user2Value}
- {user1.username} + {user1.name}
- {user2.username} + {user2.name}