From 5b8e4b98a0c0e88a57c5194ff14f9e86ad2b89cf Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Thu, 5 Feb 2026 08:31:28 -0800 Subject: [PATCH] Use "send" preview mode for copy-as-curl --- plugins/action-copy-curl/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/action-copy-curl/src/index.ts b/plugins/action-copy-curl/src/index.ts index af6eeb9a..35afeb71 100644 --- a/plugins/action-copy-curl/src/index.ts +++ b/plugins/action-copy-curl/src/index.ts @@ -10,7 +10,7 @@ export const plugin: PluginDefinition = { async onSelect(ctx, args) { const rendered_request = await ctx.httpRequest.render({ httpRequest: args.httpRequest, - purpose: 'preview', + purpose: 'send', }); const data = await convertToCurl(rendered_request); await ctx.clipboard.copyText(data);