import { Label } from "@/components/ui/label"; import { Checkbox } from "@/components/ui/checkbox"; import { Volume2, VolumeX } from "lucide-react"; import { cn } from "@/lib/utils"; interface AudioSectionProps { muteDoneSound: boolean; onMuteDoneSoundChange: (value: boolean) => void; } export function AudioSection({ muteDoneSound, onMuteDoneSoundChange, }: AudioSectionProps) { return (
Configure audio and notification settings.
When enabled, disables the "ding" sound that plays when an agent completes a feature. The feature will still move to the completed column, but without audio notification.