update libs

This commit is contained in:
Proddy
2023-04-11 18:30:45 +02:00
parent 79bff902e1
commit 8eb7793cd0
18 changed files with 385 additions and 324 deletions

View File

@@ -72,12 +72,12 @@ const SettingsScheduler: FC = () => {
name: '',
o_name: ''
};
const [schedule, setSchedule] = useState<ScheduleItem[]>([emptySchedule]);
const [scheduleItem, setScheduleItem] = useState<ScheduleItem>();
const [dow, setDow] = useState<string[]>([]);
const [errorMessage, setErrorMessage] = useState<string>();
const [creating, setCreating] = useState<boolean>(false);
const [fieldErrors, setFieldErrors] = useState<ValidateFieldsError>();
// eslint-disable-next-line