From 0c7bce332035d8b2326bdb22de7e45c30d820de4 Mon Sep 17 00:00:00 2001 From: Chirag Chandrashekhar Date: Fri, 8 May 2026 16:14:07 +0530 Subject: [PATCH] fix: Update SaveTransientRequestModal empty state when collections don't exist (#7955) --- .../src/components/SaveTransientRequest/index.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/packages/bruno-app/src/components/SaveTransientRequest/index.js b/packages/bruno-app/src/components/SaveTransientRequest/index.js index cc7b14e08..6e637b6f3 100644 --- a/packages/bruno-app/src/components/SaveTransientRequest/index.js +++ b/packages/bruno-app/src/components/SaveTransientRequest/index.js @@ -547,8 +547,18 @@ const SaveTransientRequest = ({ item: itemProp, collection: collectionProp, isOp ) : (
-

No collections Yet

+

No Collections Yet

Collections help you organize your requests. Create your first one to save this request.

+
)} @@ -748,7 +758,7 @@ const SaveTransientRequest = ({ item: itemProp, collection: collectionProp, isOp New Folder )} - {isSelectingCollection && !newCollection.show && ( + {isSelectingCollection && !newCollection.show && availableCollections.length > 0 && (