fix(FE-86): resolve merge conflict

This commit is contained in:
randy-ar
2025-10-27 11:27:08 +07:00
26 changed files with 3665 additions and 310 deletions
+1 -1
View File
@@ -104,7 +104,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;