diff --git a/packages/desktop/src/index.tsx b/packages/desktop/src/index.tsx index f05a28e148..c2ab3f1e8a 100644 --- a/packages/desktop/src/index.tsx +++ b/packages/desktop/src/index.tsx @@ -297,7 +297,7 @@ document.addEventListener("click", (e) => { const link = (e.target as HTMLElement).closest("a.external-link") as HTMLAnchorElement | null if (link?.href) { e.preventDefault() - platform.openLink(link.href) + shellOpen(link.href) } })