Skip to content

Commit dce6d6a

Browse files
committed
fix: #80507 show dry-run output for message send/poll
1 parent a8d60d3 commit dce6d6a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/commands/message-format.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ export function formatMessageCliText(result: MessageActionRunResult): string[] {
247247
const width = getTerminalTableWidth();
248248
const opts: FormatOpts = { width };
249249

250-
if (result.handledBy === "dry-run") {
250+
if (result.dryRun) {
251251
return [muted(`[dry-run] would run ${result.action} via ${result.channel}`)];
252252
}
253253

0 commit comments

Comments
 (0)