From 8cc4241704b195d5e3be0c353f03a84cbb2cb229 Mon Sep 17 00:00:00 2001 From: alkinun Date: Wed, 22 Jul 2026 17:46:29 +0300 Subject: [PATCH] Studio: remove research composer globe icon --- .../chat/components/deep-research-composer-button.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/studio/frontend/src/features/chat/components/deep-research-composer-button.tsx b/studio/frontend/src/features/chat/components/deep-research-composer-button.tsx index ab5cf9633d..9dfd6509f2 100644 --- a/studio/frontend/src/features/chat/components/deep-research-composer-button.tsx +++ b/studio/frontend/src/features/chat/components/deep-research-composer-button.tsx @@ -12,7 +12,7 @@ import { } from "@/components/ui/dialog"; import { Input } from "@/components/ui/input"; import { cn } from "@/lib/utils"; -import { ChevronDownIcon, GlobeLockIcon, TelescopeIcon, XIcon } from "lucide-react"; +import { ChevronDownIcon, TelescopeIcon, XIcon } from "lucide-react"; import { type KeyboardEvent, useState } from "react"; import { useChatRuntimeStore } from "../stores/chat-runtime-store"; import type { ResearchWebsitePolicy } from "../types/research"; @@ -128,10 +128,8 @@ export function DeepResearchComposerButton({ }) { const enabled = useChatRuntimeStore((state) => state.deepResearchEnabled); const setEnabled = useChatRuntimeStore((state) => state.setDeepResearchEnabled); - const policy = useChatRuntimeStore((state) => state.researchWebsitePolicy); if (!enabled) return null; - const limited = policy.allowedDomains.length + policy.blockedDomains.length > 0; return (