mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 20:28:40 -05:00
fix(ui): Capitalization, punctuation, and grammar inconsistences & errors (#731)
This commit is contained in:
@@ -20,9 +20,9 @@ export const messages = defineMessages({
|
||||
email: 'Email',
|
||||
permissions: 'Permissions',
|
||||
save: 'Save',
|
||||
saving: 'Saving...',
|
||||
saving: 'Saving…',
|
||||
usersaved: 'User saved',
|
||||
userfail: 'Something went wrong saving the user.',
|
||||
userfail: 'Something went wrong while saving the user.',
|
||||
});
|
||||
|
||||
const UserEdit: React.FC = () => {
|
||||
@@ -75,7 +75,9 @@ const UserEdit: React.FC = () => {
|
||||
appearance: 'error',
|
||||
autoDismiss: true,
|
||||
});
|
||||
throw new Error(`Something went wrong saving the user: ${e.message}`);
|
||||
throw new Error(
|
||||
`Something went wrong while saving the user: ${e.message}`
|
||||
);
|
||||
} finally {
|
||||
revalidate();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user