@engagebay/engagebay-form-module 1.0.7-beta.2 → 1.0.7-beta.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@engagebay/engagebay-form-module",
3
- "version": "1.0.7-beta.2",
3
+ "version": "1.0.7-beta.3",
4
4
  "description": "Provide base form components to reacho",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -165,7 +165,7 @@ const TypeaheadMultiSelect: React.FC<FormFieldComponentPropSchema> = (
165
165
  const chossenOptions = listOptions.filter((op) =>
166
166
  selectedOptions.includes(op.value),
167
167
  );
168
- setSelectedValues((prev) => [...prev, ...chossenOptions]);
168
+ // setSelectedValues((prev) => [...prev, ...chossenOptions]);
169
169
  handleChange(
170
170
  selectedOptions,
171
171
  formContext,