From 9f57bdb7033e6c2d437e56dd0183f569f92f6664 Mon Sep 17 00:00:00 2001 From: Stanislav Novosad Date: Fri, 23 Jan 2026 10:08:36 -0700 Subject: [PATCH] Enable Workflow Copilot for all users (#4533) --- .../src/routes/workflows/copilot/WorkflowCopilotButton.tsx | 7 ------- .../src/routes/workflows/copilot/WorkflowCopilotChat.tsx | 7 ++----- 2 files changed, 2 insertions(+), 12 deletions(-) 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 (