labsense-ui-kit 1.2.68 → 1.2.69

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.
@@ -7164,7 +7164,7 @@ var OptionComponent = function OptionComponent(_ref9) {
7164
7164
  searchQuery = _useState[0],
7165
7165
  setSearchQuery = _useState[1];
7166
7166
  var handleSearchChange = function handleSearchChange(e) {
7167
- setSearchQuery(e.target.value);
7167
+ setSearchQuery(e.target.value.trimStart());
7168
7168
  };
7169
7169
  var handleOptionToggle = function handleOptionToggle(currentOption) {
7170
7170
  var newOption = selectedOptions.includes(currentOption) ? selectedOptions.filter(function (item) {