diff --git a/web/templates/magazine/Magazineroom.tsx b/web/templates/magazine/Magazineroom.tsx index 71c9e6285..0ae2f9b64 100644 --- a/web/templates/magazine/Magazineroom.tsx +++ b/web/templates/magazine/Magazineroom.tsx @@ -58,11 +58,11 @@ const MagazineRoom = ({ pageData, slug }: MagazineIndexTemplateProps) => { if (tagValue === 'ALL') { delete router.query.filter router.push({ - pathname: parentSlug, + pathname: router.pathname, }) } else { router.push({ - pathname: parentSlug, + pathname: `${router.query.locale ? `/${router.query.locale}` : ''}${router.pathname}`, query: { tag: tagValue, },