diff --git a/src/components/link.jsx b/src/components/link.jsx
index a77faf09..9c5184b5 100644
--- a/src/components/link.jsx
+++ b/src/components/link.jsx
@@ -39,6 +39,10 @@ const Link = forwardRef((props, ref) => {
{...restProps}
class={`${props.class || ''} ${isActive ? 'is-active' : ''}`}
onClick={(e) => {
+ if (e.currentTarget?.parentNode?.closest('a')) {
+ // If this is nested inside another
+ e.stopPropagation();
+ }
if (routerLocation) states.prevLocation = routerLocation;
props.onClick?.(e);
}}