From 7704a199724cd13885e2ddf7ba0b3daa46e9d22b Mon Sep 17 00:00:00 2001 From: Jonatan Dahl Date: Mon, 15 Dec 2025 22:22:56 +0100 Subject: [PATCH] fix: add checkmark to 'PR base already correct' message --- cmd/sync.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/sync.go b/cmd/sync.go index 8228317..8a7a307 100644 --- a/cmd/sync.go +++ b/cmd/sync.go @@ -589,7 +589,7 @@ func runSync(gitClient git.GitClient, githubClient github.GitHubClient) error { fmt.Printf(" ✓ PR #%d updated\n", pr.Number) } } else { - fmt.Printf(" PR #%d base is already correct (%s)\n", pr.Number, pr.Base) + fmt.Printf(" ✓ PR #%d base is already correct (%s)\n", pr.Number, pr.Base) } } else { fmt.Printf(" No PR found (create one with 'gh pr create')\n")