From 0778e091c036c88a02584a0766f2ca5476fe8a75 Mon Sep 17 00:00:00 2001 From: silver Date: Mon, 22 Dec 2025 12:02:43 +0100 Subject: [PATCH] fix: linked files added via smartpicker open in new tab Signed-off-by: silver --- src/App.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App.tsx b/src/App.tsx index 3af804b0..e06c6672 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -371,6 +371,7 @@ export default function App({ if (isInternalLink && !isNewTab && !isNewWindow) { event.preventDefault() + window.open(link, '_blank') } }, [])