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."; }, [