diff --git a/src/surfaces/UnifiedDiffView.tsx b/src/surfaces/UnifiedDiffView.tsx index 5b1a6e68..3300c10c 100644 --- a/src/surfaces/UnifiedDiffView.tsx +++ b/src/surfaces/UnifiedDiffView.tsx @@ -894,9 +894,12 @@ const DiffLineRow = memo(function DiffLineRow({ }) { if (line.kind === "hunk") { return ( -
+
{lane === "code" ? ( - + {line.text} ) : null} @@ -920,15 +923,17 @@ const DiffLineRow = memo(function DiffLineRow({ if (lane === "gutter") { return ( -
+
{gutterTint ? ( ) : null} {number ?? ""} @@ -967,12 +972,14 @@ const DiffLineRow = memo(function DiffLineRow({ } return ( -
+
{renderLineText(line, tokens)}