diff --git a/skyvern-frontend/src/components/StatusBadge.tsx b/skyvern-frontend/src/components/StatusBadge.tsx index 59ad1982..8d284487 100644 --- a/skyvern-frontend/src/components/StatusBadge.tsx +++ b/skyvern-frontend/src/components/StatusBadge.tsx @@ -3,15 +3,16 @@ import { Badge } from "./ui/badge"; import { cn } from "@/util/utils"; type Props = { + className?: string; status: Status; }; -function StatusBadge({ status }: Props) { +function StatusBadge({ className, status }: Props) { const statusText = status === "timed_out" ? "timed out" : status; return (
-
+
{title} {workflowRunIsLoading ? ( ) : workflowRun ? ( - + ) : null}

{workflowRunId}