From 95d801ac070491e47b0450dc5f4a43d706ef5591 Mon Sep 17 00:00:00 2001 From: Siddharth Gelera Date: Tue, 16 Sep 2025 15:30:42 +0530 Subject: [PATCH] chore: revert to original --- .../src/components/RequestTabPanel/index.js | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/packages/bruno-app/src/components/RequestTabPanel/index.js b/packages/bruno-app/src/components/RequestTabPanel/index.js index e333a6f85..849123823 100644 --- a/packages/bruno-app/src/components/RequestTabPanel/index.js +++ b/packages/bruno-app/src/components/RequestTabPanel/index.js @@ -258,15 +258,6 @@ const RequestTabPanel = () => { ); }; - const QueryUrlOutlet = () => { - if (isGrpcRequest) { - return ; - } - if (isWsRequest) { - return ; - } - return ; - } // TODO: reaper, improve selection of panes return ( @@ -276,7 +267,13 @@ const RequestTabPanel = () => { }`} >
- + { + isGrpcRequest + ? + : isWsRequest + ? + : + }