diff --git a/src/app/(explore)/template.tsx b/src/app/(explore)/template.tsx index 73ce3c6..6755f8e 100644 --- a/src/app/(explore)/template.tsx +++ b/src/app/(explore)/template.tsx @@ -9,7 +9,7 @@ export default function ExploreLayout({ }) { return ( <> -
+
{children}
diff --git a/src/components/explore/ContentGrouping.tsx b/src/components/explore/ContentGrouping.tsx index 85bcce9..70a46ed 100644 --- a/src/components/explore/ContentGrouping.tsx +++ b/src/components/explore/ContentGrouping.tsx @@ -26,11 +26,11 @@ const ContentGrouping = ({ linkRef.current.click(); } }; - + useEffect(() => { if (currentGroup) { if (selectRef.current) { - selectRef.current.value = `${currentGroup}`; + selectRef.current.value = `${createSlug(currentGroup)}`; } } }, [currentGroup]); @@ -68,7 +68,6 @@ const ContentGrouping = ({