From 69b28eed983b92dd77d77a9ae5a3be6b743a68d2 Mon Sep 17 00:00:00 2001 From: mroxso <24775431+mroxso@users.noreply.github.com> Date: Mon, 26 May 2025 22:49:39 +0200 Subject: [PATCH] fix: update active link color in BottomBar component (#128) Co-authored-by: highperfocused --- components/BottomBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/BottomBar.tsx b/components/BottomBar.tsx index 3011d3a..19713d7 100644 --- a/components/BottomBar.tsx +++ b/components/BottomBar.tsx @@ -17,7 +17,7 @@ export default function BottomBar() { setPubkey(window.localStorage.getItem('pubkey')); }, []); - const isActive = (path: string, currentPath: string) => currentPath === path ? 'text-purple-500' : ''; + const isActive = (path: string, currentPath: string) => currentPath === path ? 'text-primary' : ''; // Render minimal navigation during SSR and hydration if (!mounted) {