Fix wording on message

This commit is contained in:
Carlos Monastyrski
2025-08-13 17:09:53 -07:00
parent bad934de48
commit 4d06d5cbb0

View File

@@ -106,9 +106,9 @@ export const SelectionPanel = ({
const getDeleteModalSubTitle = () => {
if (selectedFolderCount > 0) {
if (subscription?.pitRecovery) {
return "This folder and all its contents will be removed. You can reverse this action by rolling back to a previous commit.";
return "All selected folders and all its contents will be removed. You can reverse this action by rolling back to a previous commit.";
}
return "This folder and all its contents will be removed. Rolling back to a previous commit isn't available on your current plan. Upgrade to enable this feature.";
return "All selected folders and all its contents will be removed. Rolling back to a previous commit isn't available on your current plan. Upgrade to enable this feature.";
}
return undefined;
};