touchstudy-core 0.1.54 → 0.1.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8207,13 +8207,10 @@ var CustomSelectOption = function CustomSelectOption(_ref) {
8207
8207
  var initialValues = defaultValue !== null && typeof defaultValue !== "undefined" ? options.find(function (option) {
8208
8208
  return option.value === defaultValue;
8209
8209
  }) || null : null;
8210
- var optionValue = value !== null && typeof value !== "undefined" ? options.find(function (option) {
8211
- return option.value === value;
8212
- }) || null : null;
8213
8210
  return React__default.createElement(Select, Object.assign({
8214
8211
  isDisabled: isDisabled,
8215
8212
  options: options,
8216
- value: optionValue,
8213
+ value: value,
8217
8214
  defaultValue: initialValues,
8218
8215
  menuPlacement: scrollBottom ? "top" : "auto",
8219
8216
  isMulti: isMulti,