diff --git a/enterprise/frontend/src/metabase-enterprise/audit_app/components/UnsubscribeUserForm/UnsubscribeUserForm.jsx b/enterprise/frontend/src/metabase-enterprise/audit_app/components/UnsubscribeUserForm/UnsubscribeUserForm.jsx
index d065108fdb836df096e2dd7c2e23fb0b9591f334..dd7c5cde4383a59bc8f5c0af6142244b02c81ec6 100644
--- a/enterprise/frontend/src/metabase-enterprise/audit_app/components/UnsubscribeUserForm/UnsubscribeUserForm.jsx
+++ b/enterprise/frontend/src/metabase-enterprise/audit_app/components/UnsubscribeUserForm/UnsubscribeUserForm.jsx
@@ -26,7 +26,7 @@ const UnsubscribeUserForm = ({ user, onUnsubscribe, onClose }) => {
 
   return (
     <ModalContent
-      title={t`Unsubscribe from all subscriptions / alerts`}
+      title={t`Unsubscribe ${user.common_name} from all subscriptions and alerts?`}
       footer={[
         error ? <FormMessage key="message" formError={error} /> : null,
         <Button key="cancel" onClick={onClose}>{t`Cancel`}</Button>,
@@ -34,15 +34,15 @@ const UnsubscribeUserForm = ({ user, onUnsubscribe, onClose }) => {
           key="submit"
           danger
           onClick={handleConfirmClick}
-        >{t`Confirm`}</Button>,
+        >{t`Unsubscribe`}</Button>,
       ]}
       onClose={onClose}
     >
       <ModalMessage>
-        {t`This will delete any dashboard subscriptions or alerts that ${user.common_name} has created and remove them as a recipient from other people’s subscriptions or alerts.`}
+        {t`This will delete any dashboard subscriptions or alerts ${user.common_name} has created, and remove them as a recipient from any other subscriptions or alerts.`}
       </ModalMessage>
       <ModalMessage>
-        {t`This does not effect email distribution lists that are managed outside of Metabase.`}
+        {t`This does not affect email distribution lists that are managed outside of Metabase.`}
       </ModalMessage>
     </ModalContent>
   );
diff --git a/enterprise/frontend/src/metabase-enterprise/audit_app/components/UnsubscribeUserForm/UnsubscribeUserForm.unit.spec.js b/enterprise/frontend/src/metabase-enterprise/audit_app/components/UnsubscribeUserForm/UnsubscribeUserForm.unit.spec.js
index 9ed0c2bfe8d8d497328857956a7c43bda80d8d8c..1844a95fe4004f7b7e7aae205657ffd18f8c3981 100644
--- a/enterprise/frontend/src/metabase-enterprise/audit_app/components/UnsubscribeUserForm/UnsubscribeUserForm.unit.spec.js
+++ b/enterprise/frontend/src/metabase-enterprise/audit_app/components/UnsubscribeUserForm/UnsubscribeUserForm.unit.spec.js
@@ -21,7 +21,7 @@ describe("UnsubscribeUserForm", () => {
       />,
     );
 
-    screen.getByText("Confirm").click();
+    screen.getByText("Unsubscribe").click();
 
     waitFor(() => {
       expect(onUnsubscribe).toHaveBeenCalled();
@@ -43,7 +43,7 @@ describe("UnsubscribeUserForm", () => {
       />,
     );
 
-    screen.getByText("Confirm").click();
+    screen.getByText("Unsubscribe").click();
 
     waitFor(() => {
       expect(onUnsubscribe).toHaveBeenCalled();
diff --git a/frontend/test/metabase/scenarios/admin/people/people.cy.spec.js b/frontend/test/metabase/scenarios/admin/people/people.cy.spec.js
index d7e1f5011b724ac167a75a34a4a2cbd54fc03fdb..478fd530ab94f2dae9f11c8a0bb79cd9991ab46b 100644
--- a/frontend/test/metabase/scenarios/admin/people/people.cy.spec.js
+++ b/frontend/test/metabase/scenarios/admin/people/people.cy.spec.js
@@ -313,9 +313,9 @@ describeWithToken("scenarios > admin > people", () => {
     });
 
     modal().within(() => {
-      cy.findByText(fullName, { exact: false });
-      cy.findByText("Confirm").click();
-      cy.findByText("Confirm").should("not.exist");
+      cy.findAllByText(fullName, { exact: false });
+      cy.findByText("Unsubscribe").click();
+      cy.findByText("Unsubscribe").should("not.exist");
     });
 
     cy.visit("/account/notifications");