diff --git a/packages/ui/src/components/switch.tsx b/packages/ui/src/components/switch.tsx index 07141ee57f..418fbe3c7c 100644 --- a/packages/ui/src/components/switch.tsx +++ b/packages/ui/src/components/switch.tsx @@ -9,10 +9,9 @@ export interface SwitchProps extends ParentProps> } export function Switch(props: SwitchProps) { - const [local, others] = splitProps( - props, - ["children", "class", "hideLabel", "description", "inputProps"], // kilocode_change - ) + // kilocode_change start + const [local, others] = splitProps(props, ["children", "class", "hideLabel", "description", "inputProps"]) + // kilocode_change end return ( {/* kilocode_change */}