From 1f2c77c14fc8065bc4098feb83a6f8da568d8765 Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Sun, 1 Feb 2026 22:56:36 +0400 Subject: [PATCH] feat: allow camoufox to open new tabs in running browser --- src/hooks/use-browser-state.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/hooks/use-browser-state.ts b/src/hooks/use-browser-state.ts index 6f95e2a..881ce95 100644 --- a/src/hooks/use-browser-state.ts +++ b/src/hooks/use-browser-state.ts @@ -117,10 +117,6 @@ export function useBrowserState( return isRunning; } - if (profile.browser === "camoufox" && isRunning) { - return false; - } - // For other browsers, any profile can be used return true; }, @@ -222,7 +218,6 @@ export function useBrowserState( if (canUseForLinks) return null; - const isRunning = runningProfiles.has(profile.id); const isLaunching = launchingProfiles.has(profile.id); const isStopping = stoppingProfiles.has(profile.id); const isBrowserUpdating = isUpdating(profile.browser); @@ -252,10 +247,6 @@ export function useBrowserState( } } - if (profile.browser === "camoufox" && isRunning) { - return "Anti-detect profiles can only open links on first launch"; - } - return "This profile cannot be used for opening links right now."; }, [