The error you are seeing is due to interruption in rendering of state in react you can use router inside a non dependency useEffect
useEffect(()=>{
if(!session){
router.push("/login")
},[])