Не отправляем значение для опций которые их не могут иметь

This commit is contained in:
Rinsvent 2023-01-11 23:23:18 +07:00
parent f966ee198c
commit c52d0fc2b5

View File

@ -36,7 +36,7 @@ export default function Options({optionList}: OptionsInterface) {
...ol
}
if (selectedOption) {
temp[selectedOption.name] = '';
temp[selectedOption.name] = selectedOption.acceptValue ? '' : null;
}
setOptionList(temp)
}