@charcoal-ui/react-sandbox 3.13.0 → 3.14.0

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.esm.js CHANGED
@@ -956,7 +956,7 @@ function Carousel({
956
956
  } = visibleAreaRef.current;
957
957
  const scroll = Math.min(scrollLeft + clientWidth * scrollAmountCoef, maxScrollLeft);
958
958
  setScrollLeft(scroll, true);
959
- set({
959
+ void set({
960
960
  scroll,
961
961
  from: {
962
962
  scroll: scrollLeft
@@ -974,7 +974,7 @@ function Carousel({
974
974
  } = visibleAreaRef.current;
975
975
  const scroll = Math.max(scrollLeft - clientWidth * scrollAmountCoef, 0);
976
976
  setScrollLeft(scroll, true);
977
- set({
977
+ void set({
978
978
  scroll,
979
979
  from: {
980
980
  scroll: scrollLeft