Commit f4239564 by zhanghaozhe

bug

parent eef6f1af
......@@ -13,7 +13,7 @@ const PrivateRoute = ({component: Component, path, user, ...rest}) => {
useEffect(() => {
let _auth = !user.hasError && user.code != 4040
typeof _auth !== 'undefined' && (setAuthorization(_auth) , setLoadingState(false))
})
}, [user.hasError])
return (
......
......@@ -12,12 +12,6 @@ function RouteMiddlePage(props) {
useEffect(() => {
let {user, location, history} = props
if (history.action === 'POP' && history.length > 2) {
history.goBack();
return
}
if (!user.isFetching) {
if (user.hasError) {
history.replace('/passport', {from: location})
......@@ -32,7 +26,7 @@ function RouteMiddlePage(props) {
}
}
}
})
}, [props.user.isFetching])
return (
<div className={'loading-route'}>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment