From b21a2707d34beb82fd2e393b42600156b97e0c5a Mon Sep 17 00:00:00 2001 From: Palash gupta Date: Tue, 10 May 2022 14:11:16 +0530 Subject: [PATCH] fix: logout the user if api is not successfull --- frontend/src/AppRoutes/Private.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/AppRoutes/Private.tsx b/frontend/src/AppRoutes/Private.tsx index 3e97adec58..436b184ca4 100644 --- a/frontend/src/AppRoutes/Private.tsx +++ b/frontend/src/AppRoutes/Private.tsx @@ -2,6 +2,7 @@ import { notification } from 'antd'; import getLocalStorageApi from 'api/browser/localstorage/get'; import loginApi from 'api/user/login'; +import { Logout } from 'api/utils'; import Spinner from 'components/Spinner'; import { LOCALSTORAGE } from 'constants/localStorage'; import ROUTES from 'constants/routes'; @@ -103,7 +104,7 @@ function PrivateRoute({ children }: PrivateRouteProps): JSX.Element { history.push(ROUTES.UN_AUTHORIZED); } } else { - history.push(ROUTES.SOMETHING_WENT_WRONG); + Logout(); notification.error({ message: response.error || t('something_went_wrong'),