From 0345b11d48f3ebec5072777d0de5a4f474e5ce2f Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Mon, 18 May 2026 08:27:45 -0700 Subject: [PATCH] Fix prettier formatting in create-prompt (#1325) --- 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 91a01af8..dda7ebaf 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>` : "";