From c03fe301f889f9038ee1e1eda1b4b45c8906d72b Mon Sep 17 00:00:00 2001 From: Abhishek S Lal Date: Wed, 7 Jan 2026 13:27:38 +0530 Subject: [PATCH] fix: avoid error toast while pasting non-cURL value in GQL url field (#6718) --- packages/bruno-app/src/components/RequestPane/QueryUrl/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bruno-app/src/components/RequestPane/QueryUrl/index.js b/packages/bruno-app/src/components/RequestPane/QueryUrl/index.js index ec7afe46d..f1afcb9b6 100644 --- a/packages/bruno-app/src/components/RequestPane/QueryUrl/index.js +++ b/packages/bruno-app/src/components/RequestPane/QueryUrl/index.js @@ -95,7 +95,7 @@ const QueryUrl = ({ item, collection, handleRun }) => { const curlCommandRegex = /^\s*curl\s/i; if (!curlCommandRegex.test(pastedData)) { - toast.error('Invalid cURL command'); + // Not a curl command, allow normal paste behavior return; } event.preventDefault();