From 7e75158824c869ba1d30944f7bb97b28d16683b2 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 16 Sep 2026 18:09:29 +0530 Subject: [PATCH] fix: theme-aware Novice badge icon + readable badge hover across themes (#500) --- frontend/src/Pages/Profile.tsx | 4 ++-- frontend/src/components/BadgeUnlocked.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/Pages/Profile.tsx b/frontend/src/Pages/Profile.tsx index 4599c312..b1694edf 100644 --- a/frontend/src/Pages/Profile.tsx +++ b/frontend/src/Pages/Profile.tsx @@ -859,7 +859,7 @@ const Profile: React.FC = () => {
{profile.badges.map((badge, index) => { const badgeIcons: Record = { - Novice: , + Novice: , Streak5: , FactMaster: , FirstWin: , @@ -877,7 +877,7 @@ const Profile: React.FC = () => { return (
{badgeIcon}
diff --git a/frontend/src/components/BadgeUnlocked.tsx b/frontend/src/components/BadgeUnlocked.tsx index d74ed703..27caf9b6 100644 --- a/frontend/src/components/BadgeUnlocked.tsx +++ b/frontend/src/components/BadgeUnlocked.tsx @@ -11,7 +11,7 @@ interface BadgeUnlockedProps { } const badgeIcons: Record = { - Novice: , + Novice: , Streak5: , FactMaster: , FirstWin: ,