+ client: use relative URLs for login/logout

This commit is contained in:
Ildar Kamalov
2020-01-20 18:34:22 +03:00
parent 3166607540
commit 1b1338fed6
2 changed files with 5 additions and 4 deletions

View File

@@ -11,7 +11,8 @@ export const processLogin = values => async (dispatch) => {
dispatch(processLoginRequest());
try {
await apiClient.login(values);
window.location.replace(window.location.origin);
const dashboardUrl = window.location.origin + window.location.pathname.replace('/login.html', '/');
window.location.replace(dashboardUrl);
dispatch(processLoginSuccess());
} catch (error) {
dispatch(addErrorToast({ error }));