diff --git a/apps/code/src/renderer/features/editor/components/MarkdownRenderer.tsx b/apps/code/src/renderer/features/editor/components/MarkdownRenderer.tsx index 050e10e00..fa2052fa0 100644 --- a/apps/code/src/renderer/features/editor/components/MarkdownRenderer.tsx +++ b/apps/code/src/renderer/features/editor/components/MarkdownRenderer.tsx @@ -99,12 +99,11 @@ export const baseComponents: Components = { ); } - const isDeeplink = isPostHogCodeDeeplink(href); return ( { - if (!isDeeplink || !href) return; + if (!href) return; event.preventDefault(); void trpcClient.os.openExternal.mutate({ url: href }); }}