I'm having trouble with router.push
in next js. Sometimes, when I do it, it changes the URL but do not redirects to the desire page...
I'm using 13.0.5
pages directory.
For example, I do this:
import { useRouter } from "next/router";
(...)
const router = useRouter();
(...)
router.push(`/blog/${post.slug}`);
It's weird because sometimes works...