mirror of
https://github.com/lumina-rocks/lumina.git
synced 2026-06-05 10:11:16 +02:00
fix: update active link color in BottomBar component (#128)
Co-authored-by: highperfocused <highperfocused@pm.me>
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user