Fix wording on message

This commit is contained in:
Carlos Monastyrski
2025-08-13 18:16:37 -07:00
parent 4d06d5cbb0
commit 12558e8614

View File

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