From 0a3f0679711401d5551ee7a687f2fdfc20b8b94e Mon Sep 17 00:00:00 2001 From: Snider Date: Mon, 27 Oct 2025 06:03:42 +0000 Subject: [PATCH] Fix typo in lipgloss method call: `NewNewStyle` -> `NewStyle` --- cmd/core/cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/core/cmd/root.go b/cmd/core/cmd/root.go index cd827f9f..96916e34 100644 --- a/cmd/core/cmd/root.go +++ b/cmd/core/cmd/root.go @@ -38,7 +38,7 @@ var ( Foreground(lipgloss.Color("#3b82f6")). // Tailwind blue-500 Underline(true) - taglineStyle = lipgloss.NewNewStyle(). + taglineStyle = lipgloss.NewStyle(). Foreground(lipgloss.Color("#e2e8f0")). PaddingTop(2).PaddingLeft(8).PaddingBottom(1). // vertical spacing around the tagline Align(lipgloss.Center) // centre it under the big words