From 2c3bec2e78b1a69a637fb7195634b13992ab3955 Mon Sep 17 00:00:00 2001 From: Paul Wackerow <54227730+wackerow@users.noreply.github.com> Date: Mon, 29 Jul 2024 13:38:43 -0700 Subject: [PATCH] fix: use anchor for hash links over next/link fixes skipnav navigation bug --- tailwind/Link.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tailwind/Link.tsx b/tailwind/Link.tsx index d6e8dbf5300..533f68490dd 100644 --- a/tailwind/Link.tsx +++ b/tailwind/Link.tsx @@ -139,7 +139,7 @@ export const BaseLink = forwardRef(function Link( if (isHash) { return ( - { e.stopPropagation() trackCustomEvent( @@ -154,7 +154,7 @@ export const BaseLink = forwardRef(function Link( {...commonProps} > {children} - + ) }