diff --git a/frontend/src/components/Diff/DiffRowAsmDiffer.tsx b/frontend/src/components/Diff/DiffRowAsmDiffer.tsx
index d8c864c77..d6b94980c 100644
--- a/frontend/src/components/Diff/DiffRowAsmDiffer.tsx
+++ b/frontend/src/components/Diff/DiffRowAsmDiffer.tsx
@@ -151,15 +151,13 @@ export const DiffRow = memo(function DiffRow({
row.isPlaceholder ? () => data.onToggle(row.key) : undefined
}
>
- {row.cells.map((cell, i) =>
- cell ? (
-
- ) : null,
- )}
+ {row.cells.map((cell, i) => (
+
+ ))}
);
}, areEqual);