From f7539576bbb697c9779c7f799039bfe43b5d6a7b Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Mon, 18 May 2026 07:19:38 -0700 Subject: [PATCH] Fix prettier formatting in create-prompt --- src/create-prompt/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/create-prompt/index.ts b/src/create-prompt/index.ts index 91a01af8f..dda7ebafd 100644 --- a/src/create-prompt/index.ts +++ b/src/create-prompt/index.ts @@ -395,7 +395,7 @@ function getCommitInstructions( useCommitSigning: boolean, ): string { const coAuthorLine = - ((githubData.triggerDisplayName ?? context.triggerUsername) !== "Unknown") + (githubData.triggerDisplayName ?? context.triggerUsername) !== "Unknown" ? `Co-authored-by: ${githubData.triggerDisplayName ?? context.triggerUsername} <${context.triggerUsername}@users.noreply.github.com>` : "";