Open SudoStain opened 3 years ago
@SudoStain
Updating components/elements/mobile-nav-menu.js
as below may close your issue.
https://github.com/strapi/strapi-starter-next-corporate/pull/63/files
const closeHandler = () => { closeSelf(); };
useEffect(() => { const routeChangeComplete = (url) => { closeHandler() } router.events.on("routeChangeComplete", routeChangeComplete) return () => { router.events.off("routeChangeComplete", routeChangeComplete) } }, [])
I'm pretty sure this is a nextjs problem but when you click on the contact page the page loads in the background but the menu doesn't close.