Skip to content

Commit

Permalink
Spacing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamon committed Apr 29, 2024
1 parent 89ec78f commit aa2c3b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions internal/pkg/cli/command/root/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ func init() {
}),
Long: fmt.Sprintf(`pinecone is a CLI tool for managing your Pinecone resources
Get started by logging in with
Get started by logging in with
%s
%s
`, style.CodeWithPrompt("pinecone login")),
}

Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/utils/style/color.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func applyStyle(s string, c color.Attribute) string {
}

func CodeWithPrompt(s string) string {
return (applyStyle("$ ", color.Faint) + applyStyle(s, color.FgMagenta))
return (applyStyle("$ ", color.Faint) + applyColor(s, color.New(color.FgMagenta, color.Bold)))
}

func StatusGreen(s string) string {
Expand Down

0 comments on commit aa2c3b4

Please sign in to comment.