Skip to content

Commit c5ce0f2

Browse files
committed
remove q:nbs attribute handling from link component
1 parent a688c83 commit c5ce0f2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/qwik-router/src/runtime/src/link-component.tsx

+1-4
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,7 @@ export const Link = component$<LinkProps>((props) => {
7373
? $(async (event: Event, elm: HTMLAnchorElement) => {
7474
if (event.defaultPrevented) {
7575
// If default was prevented, than it is up to us to make client side navigation.
76-
if (elm.hasAttribute('q:nbs')) {
77-
// Allow bootstrapping into useNavigate.
78-
await nav(location.href, { type: 'popstate' });
79-
} else if (elm.href) {
76+
if (elm.href) {
8077
elm.setAttribute('aria-pressed', 'true');
8178
await nav(elm.href, { forceReload: reload, replaceState, scroll });
8279
elm.removeAttribute('aria-pressed');

0 commit comments

Comments
 (0)