Skip to content

Commit c05c187

Browse files
Fix promptText formatting in selection output (#10148)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 7b3b408 commit c05c187

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Aspire.Cli/Commands/PublishCommandBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ private async Task HandlePromptActivityAsync(PublishingActivity activity, IAppHo
494494
choice => choice.Value,
495495
cancellationToken);
496496

497-
AnsiConsole.MarkupLine($"{promptText.EscapeMarkup()} {selectedChoice.Value.EscapeMarkup()}");
497+
AnsiConsole.MarkupLine($"{promptText} {selectedChoice.Value.EscapeMarkup()}");
498498

499499
return selectedChoice.Key;
500500
}

0 commit comments

Comments
 (0)