refactor: Update MobileLink component to use href.toString() for consistency

This commit is contained in:
mauro 🤙
2024-08-27 23:22:23 +00:00
parent 61a8f73364
commit 1d5d28fa23

View File

@@ -95,7 +95,7 @@ function MobileLink({
const router = useRouter()
return (
<a
href={href}
href={href.toString()}
onClick={() => {
router.push(href.toString())
onOpenChange?.(false)