Merge pull request #746 from flof/bugfix/misleading-collection-remove-message

fix misleading message
This commit is contained in:
Anoop M D 2023-10-24 00:08:14 +05:30 committed by GitHub
commit 586e26fa2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ const RemoveCollection = ({ onClose, collection }) => {
return (
<Modal size="sm" title="Remove Collection" confirmText="Remove" handleConfirm={onConfirm} handleCancel={onClose}>
Are you sure you want to delete collection <span className="font-semibold">{collection.name}</span> ?
Are you sure you want to remove collection <span className="font-semibold">{collection.name}</span> ?
</Modal>
);
};