Skip to content

Commit 268cccd

Browse files
committed
fix %s printf
1 parent d8317e5 commit 268cccd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/hello/steps.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ func printBrevOpen(t *terminal.Terminal, firstWorkspace entity.Workspace) {
103103

104104
func printCompletedOnboarding(t *terminal.Terminal) {
105105
s := "\n\nI think I'm done here. Now you know how to open an instance and start coding."
106-
s += "\n\nUse the console " + t.Yellow(fmt.Sprintf("(%s)"), config.ConsoleBaseURL) + " to create a new instance or share it with people"
106+
s += "\n\nUse the console " + t.Yellow(fmt.Sprintf("(%s)", config.ConsoleBaseURL)) + " to create a new instance or share it with people"
107107
s += "\nand use this CLI to code the way you would normally 🤙"
108108
s += "\n\nCheck out the docs at " + t.Yellow("https://brev.dev") + " and let us know if we can help!\n"
109109
s += "\n\nIn case you missed it, my cell is " + t.Yellow("(415) 237-2247") + "\n\t-Nader\n"

0 commit comments

Comments
 (0)