@measured/puck 0.10.1-canary.922a839 → 0.10.1-canary.cc20c52
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -3219,7 +3219,7 @@ var ArrayField = ({
|
|
3219
3219
|
const [arrayFieldId] = (0, import_react25.useState)(generateId("ArrayField"));
|
3220
3220
|
const { state, setUi } = useAppContext();
|
3221
3221
|
const arrayState = state.ui.arrayState[arrayFieldId] || {
|
3222
|
-
items: Array.from(value).map((v) => ({
|
3222
|
+
items: Array.from(value || []).map((v) => ({
|
3223
3223
|
_arrayId: generateId("ArrayItem"),
|
3224
3224
|
data: v
|
3225
3225
|
})),
|
@@ -3239,7 +3239,7 @@ var ArrayField = ({
|
|
3239
3239
|
[arrayState]
|
3240
3240
|
);
|
3241
3241
|
(0, import_react25.useEffect)(() => {
|
3242
|
-
const newItems = Array.from(value).map((item, idx) => {
|
3242
|
+
const newItems = Array.from(value || []).map((item, idx) => {
|
3243
3243
|
var _a;
|
3244
3244
|
return {
|
3245
3245
|
_arrayId: ((_a = arrayState.items[idx]) == null ? void 0 : _a._arrayId) || generateId("ArrayItem"),
|