diff --git a/src/components/Settings.tsx b/src/components/Settings.tsx index 331ef8a..7e1a110 100644 --- a/src/components/Settings.tsx +++ b/src/components/Settings.tsx @@ -67,7 +67,7 @@ export default function Settings() { // Custom Schedules per day & per professional const [professionals, setProfessionals] = useState([]); const [selectedProfId, setSelectedProfId] = useState('all'); - const [dailySchedules, setDailySchedules] = useState<{ active: boolean; shifts: { start: string; end: string }[] }>([ + const [dailySchedules, setDailySchedules] = useState<{ active: boolean; shifts: { start: string; end: string }[] }[]>([ { active: false, shifts: [{ start: '09:00', end: '18:00' }] }, // Dom { active: true, shifts: [{ start: '08:00', end: '12:00' }, { start: '13:00', end: '18:00' }] }, // Seg { active: true, shifts: [{ start: '08:00', end: '12:00' }, { start: '13:00', end: '18:00' }] }, // Ter