diff --git a/web/src/app/admin/bots/[bot-id]/channels/SlackChannelConfigFormFields.tsx b/web/src/app/admin/bots/[bot-id]/channels/SlackChannelConfigFormFields.tsx index 04a2236d5c9a..3ca22584e685 100644 --- a/web/src/app/admin/bots/[bot-id]/channels/SlackChannelConfigFormFields.tsx +++ b/web/src/app/admin/bots/[bot-id]/channels/SlackChannelConfigFormFields.tsx @@ -230,6 +230,7 @@ export function SlackChannelConfigFormFields({

Warning: Disabling the default configuration means the bot @@ -565,7 +566,7 @@ export function SlackChannelConfigFormFields({ General Configuration - +

= ({ sublabel, size = "md", tooltip, + labelClassName, ...props }) => { const [field, , helpers] = useField({ name, type: "checkbox" }); @@ -74,7 +76,12 @@ export const CheckFormField: React.FC = ({ className="flex flex-col cursor-pointer" onClick={handleClick} > - + {label} {sublabel && ( diff --git a/web/src/components/ui/radio-group.tsx b/web/src/components/ui/radio-group.tsx index 5aac65d13202..d650e8e15cfc 100644 --- a/web/src/components/ui/radio-group.tsx +++ b/web/src/components/ui/radio-group.tsx @@ -28,7 +28,7 @@ const RadioGroupItem = React.forwardRef<