make it more readable on smaller screens

This commit is contained in:
Robin Olsen
2026-03-26 13:47:24 +01:00
parent b96b5fedec
commit 2a561f722a

View File

@@ -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)
}
}