// Это сам код на который жалуется
useEffect(() => {
const login = window.location.pathname
fetch(`http://localhost:3000/auth${login}`)
.then(res => res.json())
.then(profile => setProfileUser(profile))
.catch(e => console.log(e))
}, [])