File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
apps/website/src/components/navigation-docs Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
import { PropsOf , component$ } from '@builder.io/qwik' ;
2
- import { Link , useLocation } from '@builder.io/qwik-city' ;
2
+ import { useLocation } from '@builder.io/qwik-city' ;
3
3
import { ComponentStatus } from '~/_state/component-status.type' ;
4
4
import { StatusBadge } from '../component-status-badge/component-status-badge' ;
5
5
import { cn } from '@qwik-ui/utils' ;
@@ -60,7 +60,7 @@ export const DocsNavigation = component$(
60
60
const isLinkActive = location . url . pathname === link . href ;
61
61
return (
62
62
< li key = { link . name + link . href } >
63
- < Link
63
+ < a
64
64
class = { cn (
65
65
buttonVariants ( { look : 'ghost' } ) ,
66
66
'flex h-10 items-center rounded-base font-sans' ,
@@ -78,7 +78,7 @@ export const DocsNavigation = component$(
78
78
< div > { link . name } </ div >
79
79
{ link . status && < StatusBadge status = { link . status } /> }
80
80
</ div >
81
- </ Link >
81
+ </ a >
82
82
</ li >
83
83
) ;
84
84
} ) }
You can’t perform that action at this time.
0 commit comments