Update messaging

This commit is contained in:
Vladyslav Matsiiako
2023-02-22 17:21:44 -08:00
parent 0c72f50b5e
commit 2143db5eb5

View File

@@ -86,7 +86,7 @@ export const OrgSettingsPage = () => {
} catch (error) {
console.error(error);
createNotification({
text: 'Failed to remove user from org',
text: 'Failed to remove user from the organization',
type: 'error'
});
}
@@ -97,7 +97,7 @@ export const OrgSettingsPage = () => {
try {
await addUserToOrg.mutateAsync({ organizationId: currentOrg?._id, inviteeEmail: email });
createNotification({
text: 'Successfully invited user to org',
text: 'Successfully invited user to the organization.',
type: 'success'
});
} catch (error) {