🐛 fix: update LoadingBar color to primary for better visibility in navigation progress

This commit is contained in:
web 2025-12-15 06:45:44 -08:00
parent b55961395f
commit 46cbdeafd4

View File

@ -15,11 +15,6 @@ export function NavigationProgress() {
}, [state.status]);
return (
<LoadingBar
color="var(--muted-foreground)"
height={2}
ref={ref}
shadow={true}
/>
<LoadingBar color="var(--primary)" height={2} ref={ref} shadow={true} />
);
}