19482: Tests should be passing now
[arvados.git] / src / views-components / auto-logout / auto-logout.tsx
index a2d71d08dc406bf2d1baf96d13ce2929f5291c28..b4bef2b5efdb51b40d73542f51aad87b86969a16 100644 (file)
@@ -30,7 +30,7 @@ const mapStateToProps = (state: RootState, ownProps: any): AutoLogoutDataProps =
 });
 
 const mapDispatchToProps = (dispatch: Dispatch): AutoLogoutActionProps => ({
-    doLogout: () => dispatch<any>(logout(true)),
+    doLogout: () => dispatch<any>(logout(true, true)),
     doWarn: (message: string, duration: number) =>
         dispatch(snackbarActions.OPEN_SNACKBAR({
             message, hideDuration: duration, kind: SnackbarKind.WARNING })),