@open-mercato/ui 0.6.7-develop.6726.1.983ae8a07e → 0.6.7-develop.6744.1.0483b18565

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.
@@ -1,3 +1,3 @@
1
1
  Generated lucide registry with 145 icons -> /home/runner/work/open-mercato/open-mercato/packages/ui/src/backend/icons/lucideRegistry.generated.tsx
2
- [build:ui] found 393 entry points
2
+ [build:ui] found 394 entry points
3
3
  [build:ui] built successfully
@@ -1798,10 +1798,11 @@ function CrudForm({
1798
1798
  }, [validateFieldOnBlur]);
1799
1799
  const handleFieldsetSelectionChange = React.useCallback(
1800
1800
  (entityId2, nextCode) => {
1801
+ if (!nextCode) return;
1801
1802
  setCfFieldsetSelections((prev) => ({ ...prev, [entityId2]: nextCode }));
1802
1803
  const bindingKey = customFieldsetBindings?.[entityId2]?.valueKey;
1803
1804
  if (bindingKey) {
1804
- setValue(bindingKey, nextCode ?? void 0);
1805
+ setValue(bindingKey, nextCode);
1805
1806
  }
1806
1807
  },
1807
1808
  [customFieldsetBindings, setValue]