diff --git a/packages/bruno-app/src/components/Sidebar/Collections/Collection/RemoveCollection/index.js b/packages/bruno-app/src/components/Sidebar/Collections/Collection/RemoveCollection/index.js index 11382b1fa..2635d3b60 100644 --- a/packages/bruno-app/src/components/Sidebar/Collections/Collection/RemoveCollection/index.js +++ b/packages/bruno-app/src/components/Sidebar/Collections/Collection/RemoveCollection/index.js @@ -10,15 +10,16 @@ const RemoveCollection = ({ onClose, collection }) => { const onConfirm = () => { dispatch(removeCollection(collection.uid)) .then(() => { - toast.success('Collection removed'); + toast.success('Collection closed'); onClose(); }) - .catch(() => toast.error('An error occurred while removing the collection')); + .catch(() => toast.error('An error occurred while closing the collection')); }; return ( - - Are you sure you want to remove collection {collection.name} ? + + Are you sure you want to close collection {collection.name} from Bruno? It + will remain in your file system in {collection.pathname}. ); }; diff --git a/packages/bruno-app/src/components/Sidebar/Collections/Collection/index.js b/packages/bruno-app/src/components/Sidebar/Collections/Collection/index.js index 81502831d..1c758f271 100644 --- a/packages/bruno-app/src/components/Sidebar/Collections/Collection/index.js +++ b/packages/bruno-app/src/components/Sidebar/Collections/Collection/index.js @@ -217,7 +217,7 @@ const Collection = ({ collection, searchText }) => { setShowRemoveCollectionModal(true); }} > - Remove + Close