Skip to content

Commit

Permalink
wording
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnDuprey committed Feb 13, 2025
1 parent e53ac48 commit ba567c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/identity/administration/users/user/bec.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const Page = () => {
const getUserMessage = () => {
if (!becPollingCall.data) return null;
if (becPollingCall.data.NewUsers && becPollingCall.data.NewUsers.length > 0) {
return "Suspicious new users have been found in the last 14 days. Please review the list below and take action as needed.";
return "New users have been found in the last 14 days. Please review the list below and take action as needed.";
}
return "No new users found.";
};
Expand All @@ -126,7 +126,7 @@ const Page = () => {
if (hasPotentialBreach) {
return "Potential Breach found.";
}
return "Suspicious new applications have been found. Please review the list below and take action as needed.";
return "New applications have been found. Please review the list below and take action as needed.";
}
return "No new applications found.";
};
Expand All @@ -137,7 +137,7 @@ const Page = () => {
becPollingCall.data.MailboxPermissionChanges &&
becPollingCall.data.MailboxPermissionChanges.length > 0
) {
return "Suspicious mailbox permission changes have been found.";
return "Mailbox permission changes have been found.";
}
return "No mailbox permission changes found.";
};
Expand Down

0 comments on commit ba567c6

Please sign in to comment.