From e8156c561138435292c8bde3e65c176940a854ba Mon Sep 17 00:00:00 2001 From: Florian Fankhauser Date: Mon, 23 Oct 2023 20:19:05 +0200 Subject: [PATCH] fix misleading message --- .../Sidebar/Collections/Collection/RemoveCollection/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 cd8291af4..11382b1fa 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 @@ -18,7 +18,7 @@ const RemoveCollection = ({ onClose, collection }) => { return ( - Are you sure you want to delete collection {collection.name} ? + Are you sure you want to remove collection {collection.name} ? ); };