From 2b246e431b9c1c8e9cbf7922be4a2c12b527c95b Mon Sep 17 00:00:00 2001 From: Pooja Belaramani Date: Fri, 25 Apr 2025 15:58:53 +0530 Subject: [PATCH] change: no found folder tab --- .../bruno-app/src/components/RequestTabs/RequestTab/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/bruno-app/src/components/RequestTabs/RequestTab/index.js b/packages/bruno-app/src/components/RequestTabs/RequestTab/index.js index 562fc319f..5ec489c3e 100644 --- a/packages/bruno-app/src/components/RequestTabs/RequestTab/index.js +++ b/packages/bruno-app/src/components/RequestTabs/RequestTab/index.js @@ -76,7 +76,9 @@ const RequestTab = ({ tab, collection, tabIndex, collectionRequestTabs, folderUi className={`flex items-center justify-between tab-container px-1 ${tab.preview ? "italic" : ""}`} onMouseUp={handleMouseUp} // Add middle-click behavior here > - {tab.type === 'folder-settings' ? ( + {tab.type === 'folder-settings' && !folder ? ( + + ) : tab.type === 'folder-settings' ? ( dispatch(makeTabPermanent({ uid: tab.uid }))} type={tab.type} tabName={folder?.name} /> ) : ( dispatch(makeTabPermanent({ uid: tab.uid }))} type={tab.type} />