fix: update active link color in BottomBar component (#128)

Co-authored-by: highperfocused <highperfocused@pm.me>
This commit is contained in:
mroxso
2025-05-26 22:49:39 +02:00
committed by GitHub
parent 50c231bf0c
commit 69b28eed98

View File

@@ -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) {