diff --git a/pkg/minikube/out/out.go b/pkg/minikube/out/out.go index 63ccf90614..df5d29b64c 100644 --- a/pkg/minikube/out/out.go +++ b/pkg/minikube/out/out.go @@ -139,7 +139,7 @@ func BoxedWithConfig(cfg box.Config, st style.Enum, title string, text string, a title = Sprintf(st, title) } // need to make sure no newlines are in the title otherwise box-cli-maker panics - title = translate.T(strings.ReplaceAll(title, "\n", "")) + title = strings.ReplaceAll(title, "\n", "") boxedCommon(String, cfg, title, text, a...) }