From ceb927fec0fe97b6430dfc3f784e2b2d646d0d2f Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sun, 9 Jan 2022 13:38:05 +1100 Subject: [PATCH] fix formatting --- pkg/gui/modes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/gui/modes.go b/pkg/gui/modes.go index 71bdb0a48..1f92d1c84 100644 --- a/pkg/gui/modes.go +++ b/pkg/gui/modes.go @@ -67,7 +67,7 @@ func (gui *Gui) modeStatuses() []modeStatus { workingTreeState := gui.Git.Status.WorkingTreeState() return style.FgYellow.Sprintf( "%s %s", - workingTreeState, + formatWorkingTreeState(workingTreeState), style.AttrUnderline.Sprint(gui.Tr.ResetInParentheses), ) },