Fix Href Interpolation Failed error
-
https://nextjs.org/docs/messages/href-interpolation-failed
const handlePaginationChange = async (value) => { // await fetchRecords(scope, value - 1); // setActivePage(value); const params = { pathname: "/clubs/[slug]", query: { slug: lsc, page: value }, }; router.push(params, undefined, { shallow: true }); window && window.scroll({ top: 0, behavior: "smooth" }); };