We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 098245b commit 42d3b1dCopy full SHA for 42d3b1d
1 file changed
internal/tui/note.go
@@ -70,11 +70,11 @@ func (o Output) PrintNote(format string, args ...any) {
70
o.PrintNoteWithOptions(format, args, WithHeader(InfoHeader))
71
}
72
73
-var WarningHeader = Str{
+var warningHeader = Str{
74
Plain: " Warn -> ",
75
Fancy: aec.Bold.Apply(aec.LightYellowB.Apply(aec.BlackF.Apply("w")) + " " + ColorWarning.Apply("Warn → ")),
76
77
78
func (o Output) PrintWarning(format string, args ...any) {
79
- o.PrintNoteWithOptions(format, args, WithHeader(WarningHeader), WithMessageColor(ColorWarning))
+ o.PrintNoteWithOptions(format, args, WithHeader(warningHeader), WithMessageColor(ColorWarning))
80
0 commit comments