We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e26b3d commit f6b438aCopy full SHA for f6b438a
packages/optimizely-cms-sdk/src/react/server.tsx
@@ -269,7 +269,7 @@ export function OptimizelyGridSection({
269
);
270
}
271
272
- const { nodes, nodeType } = node;
+ const { nodeType } = node;
273
const globalNames: Record<string, string> = {
274
row: '_Row',
275
column: '_Column',
@@ -293,7 +293,11 @@ export function OptimizelyGridSection({
293
key={node.key}
294
displaySettings={parsedDisplaySettings}
295
>
296
- <OptimizelyGridSection row={row} column={column} nodes={nodes ?? []} />
+ <OptimizelyGridSection
297
+ row={row}
298
+ column={column}
299
+ nodes={node.nodes ?? []}
300
+ />
301
</Component>
302
303
});
0 commit comments