Skip to content
Snippets Groups Projects
Commit b5586399 authored by Aymeric Bernard's avatar Aymeric Bernard
Browse files

Fix: null row

parent 52474f23
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,9 @@ const TextAndImageRow = ({ row }) => (
);
const Row = ({ row }) => {
if (!row) {
return null;
}
let SubRow;
switch (row.type) {
case 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment