From ef27279a500ca14c9349bae59dfebd36a8af066f Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sat, 21 Feb 2026 03:44:02 +0000 Subject: [PATCH] Add explicit newline after submit status message Co-authored-by: Paul Kuruvilla --- internal/commands/submit.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/commands/submit.go b/internal/commands/submit.go index 8a3cd90..a7e5756 100644 --- a/internal/commands/submit.go +++ b/internal/commands/submit.go @@ -76,8 +76,8 @@ func SubmitCommand() (err error) { return fmt.Errorf("commit changes: %w", err) } - // Place this before the push so that it "feels" fast - fmt.Printf("Submitting changes (commit: %s)...\n", commitSha[:7]) + // Place this before the push so that it "feels" fast. + fmt.Printf("Submitting changes (commit: %s)...\n\n", commitSha[:7]) err = pushBranchToRemote(repoDir, codecraftersRemote.Name) if err != nil {