diff --git a/internal/tui/components/core/helpers.go b/internal/tui/components/core/helpers.go index ee7340ea4f13eee4e4ac74789a9a6efcd7c4ad8b..8ec0125a280b1f0dae9b7cf94e11b4187a9c0539 100644 --- a/internal/tui/components/core/helpers.go +++ b/internal/tui/components/core/helpers.go @@ -150,8 +150,6 @@ func SelectableButtons(buttons []ButtonOpts, spacing string) string { func DiffFormatter() *diffview.DiffView { formatDiff := diffview.New() style := chroma.MustNewStyle("crush", styles.GetChromaTheme()) - diff := formatDiff. - SyntaxHightlight(true). - ChromaStyle(style) + diff := formatDiff.ChromaStyle(style) return diff }