diff --git a/skyvern-frontend/src/routes/workflows/copilot/WorkflowCopilotButton.tsx b/skyvern-frontend/src/routes/workflows/copilot/WorkflowCopilotButton.tsx index edb62c02..030a1d1c 100644 --- a/skyvern-frontend/src/routes/workflows/copilot/WorkflowCopilotButton.tsx +++ b/skyvern-frontend/src/routes/workflows/copilot/WorkflowCopilotButton.tsx @@ -1,6 +1,5 @@ import { forwardRef } from "react"; import { ChatBubbleIcon } from "@radix-ui/react-icons"; -import { useIsSkyvernUser } from "@/hooks/useIsSkyvernUser"; interface WorkflowCopilotButtonProps { messageCount: number; @@ -11,12 +10,6 @@ export const WorkflowCopilotButton = forwardRef< HTMLButtonElement, WorkflowCopilotButtonProps >(({ messageCount, onClick }, ref) => { - const isSkyvernUser = useIsSkyvernUser(); - - if (!isSkyvernUser) { - return null; - } - return (