diff --git a/front/src/components/WithToken.jsx b/front/src/components/WithToken.jsx index d136f9e..258f072 100644 --- a/front/src/components/WithToken.jsx +++ b/front/src/components/WithToken.jsx @@ -9,7 +9,7 @@ function WithToken({ children }) { if (!getToken()) { return navigate("/login") } - }, []) + }, [navigate]) return ( <>{children}