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.
package/dist/index.js CHANGED
@@ -8205,13 +8205,10 @@ var CustomSelectOption = function CustomSelectOption(_ref) {
8205
8205
  var initialValues = defaultValue !== null && typeof defaultValue !== "undefined" ? options.find(function (option) {
8206
8206
  return option.value === defaultValue;
8207
8207
  }) || null : null;
8208
- var optionValue = value !== null && typeof value !== "undefined" ? options.find(function (option) {
8209
- return option.value === value;
8210
- }) || null : null;
8211
8208
  return React__default.createElement(Select__default, Object.assign({
8212
8209
  isDisabled: isDisabled,
8213
8210
  options: options,
8214
- value: optionValue,
8211
+ value: value,
8215
8212
  defaultValue: initialValues,
8216
8213
  menuPlacement: scrollBottom ? "top" : "auto",
8217
8214
  isMulti: isMulti,