Fix to display message in toast when user is forbidden to do something

Translation does not work
This commit is contained in:
2022-02-15 14:34:40 +01:00
parent 4e83e7905a
commit a6504366b4
2 changed files with 3 additions and 4 deletions

View File

@@ -21,9 +21,7 @@ const makeFetch = (method, url, body) => {
}
if (response.status === 403) {
return response.json().then(() => {
throw AccessException();
});
throw AccessException();
}
throw {
@@ -95,7 +93,7 @@ const ValidationException = (response) => {
const AccessException = () => {
const error = {};
error.name = 'AccessException';
error.violations = ['You are no longer permitted to perform this action'];
error.violations = ['You are not allowed to perform this action'];
return error;
}