Merge branch 'development' into feat/FE/US-77/transfer-to-laying

This commit is contained in:
ValdiANS
2025-10-27 13:07:09 +07:00
35 changed files with 4772 additions and 181 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ const SelectInput = <T extends OptionType>(props: SelectInputProps<T>) => {
const SelectComponent = createables ? CreatableSelect : Select;
/** 🎯 handleChange tanpa any */
const handleChange = (val: MultiValue<T> | SingleValue<T> | null): void => {
const handleChange = (val: MultiValue<T> | SingleValue<T>): void => {
if (!val) {
onChange?.(null);
return;