diff --git a/packages/cells/src/cell.stories.tsx b/packages/cells/src/cell.stories.tsx index 97a4aedbe..7866fa1e0 100644 --- a/packages/cells/src/cell.stories.tsx +++ b/packages/cells/src/cell.stories.tsx @@ -496,7 +496,7 @@ export const CustomCellEditing: React.VFC = () => { onCellEdited={(cell, newVal) => { if (newVal.kind !== GridCellKind.Custom) return; if (DropdownRenderer.isMatch(newVal)) { - data.current[cell[1]] = newVal.data.value; + data.current[cell[1]] = newVal.data.value ?? ""; } }} getCellsForSelection={true}