Use shallow routing for website details.

This commit is contained in:
Mike Cao 2022-11-02 08:57:52 -07:00
parent cb3895e565
commit 05245ca316
3 changed files with 5 additions and 4 deletions

View file

@ -17,9 +17,9 @@ export default function MenuLayout({
function handleSelect(url) {
if (replace) {
router.replace(url);
router.replace(url, undefined, { shallow: true });
} else {
router.push(url);
router.push(url, undefined, { shallow: true });
}
}