7152-devToTest_2414 #262

Merged
alexm merged 226 commits from 7152-devToTest_2414 into test 2024-03-28 08:20:24 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit 0d3d002baf - Show all commits

View File

@ -37,7 +37,7 @@ export function useSession() {
headers: { Authorization: localStorage.getItem('tokenMultimedia') },
});
} catch (error) {
notify('errors.userConfig', 'negative');
notify('errors.statusUnauthorized', 'negative');
} finally {
localStorage.removeItem('tokenMultimedia');
}
@ -48,7 +48,7 @@ export function useSession() {
headers: { Authorization: localStorage.getItem('token') },
});
} catch (error) {
notify('errors.userConfig', 'negative');
notify('errors.statusUnauthorized', 'negative');
} finally {
localStorage.removeItem('token');
}
@ -60,7 +60,7 @@ export function useSession() {
headers: { Authorization: sessionStorage.getItem('tokenMultimedia') },
});
} catch (error) {
notify('errors.userConfig', 'negative');
notify('errors.statusUnauthorized', 'negative');
} finally {
sessionStorage.removeItem('tokenMultimedia');
}
@ -71,7 +71,7 @@ export function useSession() {
headers: { Authorization: sessionStorage.getItem('token') },
});
} catch (error) {
notify('errors.userConfig', 'negative');
notify('errors.statusUnauthorized', 'negative');
} finally {
sessionStorage.removeItem('token');
}