diff --git a/frontend/src/pages/secret-manager/OverviewPage/components/SelectionPanel/SelectionPanel.tsx b/frontend/src/pages/secret-manager/OverviewPage/components/SelectionPanel/SelectionPanel.tsx index f91c296a3..11ee3def8 100644 --- a/frontend/src/pages/secret-manager/OverviewPage/components/SelectionPanel/SelectionPanel.tsx +++ b/frontend/src/pages/secret-manager/OverviewPage/components/SelectionPanel/SelectionPanel.tsx @@ -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; };