From 2a561f722affbcd4ac60848b5e8af1d823e240fc Mon Sep 17 00:00:00 2001 From: Robin Olsen Date: Thu, 26 Mar 2026 13:47:24 +0100 Subject: [PATCH] make it more readable on smaller screens --- cmd/pm/runner.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/pm/runner.go b/cmd/pm/runner.go index 4b315cf..3a5039c 100644 --- a/cmd/pm/runner.go +++ b/cmd/pm/runner.go @@ -70,7 +70,7 @@ func runStartCmd(cmd *cobra.Command, args []string) error { } if mongoStorage != nil { - cmd.Println("Connected to Database Successfully. Starting survey...") + cmd.Println("Connected to Database Successfully.\n Starting survey...") time.Sleep(2 * time.Second) defer mongoStorage.Close() @@ -104,7 +104,7 @@ func runStartCmd(cmd *cobra.Command, args []string) error { }() } else { - cmd.Println("Starting survey without database connection. Your responses will not be submitted...") + cmd.Println("Starting survey without database connection.\n Your responses will not be submitted...") time.Sleep(2 * time.Second) } }