diff --git a/src/static/scripts/admin_users.js b/src/static/scripts/admin_users.js index 71015d1d..be30e105 100644 --- a/src/static/scripts/admin_users.js +++ b/src/static/scripts/admin_users.js @@ -33,11 +33,11 @@ function deleteSSOUser(event) { alert("Required parameters not found!"); return false; } - const input_email = prompt(`To delete user "${email}", please type the email below`); + const input_email = prompt(`To delete user "${email}" SSO association, please type the email below`); if (input_email != null) { if (input_email == email) { _delete(`${BASE_URL}/admin/users/${id}/sso`, - "User SSO Associtation deleted correctly", + "User SSO association deleted correctly", "Error deleting user SSO association" ); } else {