diff --git a/frontend/app/router.js b/frontend/app/router.js index 4880c27..a363cd3 100644 --- a/frontend/app/router.js +++ b/frontend/app/router.js @@ -67,6 +67,7 @@ async function navigate(path, { push = true, search = '' } = {}) { // ── Intercept same-origin link clicks ─────────────────────────── document.addEventListener('click', e => { + if (e.defaultPrevented) return; const a = e.target.closest('a[href]'); if (!a) return; let url;