diff --git a/skyvern-frontend/src/components/SwitchBar.tsx b/skyvern-frontend/src/components/SwitchBar.tsx index b3c21685..47d98d53 100644 --- a/skyvern-frontend/src/components/SwitchBar.tsx +++ b/skyvern-frontend/src/components/SwitchBar.tsx @@ -7,12 +7,13 @@ type Option = { type Props = { className?: string; + highlight?: boolean; options: Option[]; value: string; onChange: (value: string) => void; }; -function SwitchBar({ className, options, value, onChange }: Props) { +function SwitchBar({ className, highlight, options, value, onChange }: Props) { return (