Adding a page reload when 403 occurs, if token has expired this will return to login page.
This commit is contained in:
parent
373c57580a
commit
21a2632da7
|
@ -43,7 +43,8 @@ const makeApiCall = async ({ method, url, body, json = true }) => {
|
|||
case 400:
|
||||
return handleError(`${url}: Bad Request`)
|
||||
case 403:
|
||||
notificationStore.danger("Forbidden")
|
||||
// reload the page incase the token has expired
|
||||
location.reload()
|
||||
return handleError(`${url}: Forbidden`)
|
||||
default:
|
||||
if (response.status >= 200 && response.status < 400) {
|
||||
|
|
Loading…
Reference in New Issue