Skip to content

Commit 6c58b90

Browse files
authored
Fix tanstack-router example in routing.mdx (#8404)
1 parent 9a9fb4f commit 6c58b90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/dev/docs/pages/react-aria/routing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ function RootRoute() {
287287
let router = useRouter();
288288
return (
289289
<RouterProvider
290-
navigate={(href, opts) => router.navigate({...href, ...options})}
290+
navigate={(href, opts) => router.navigate({...href, ...opts})}
291291
useHref={href => router.buildLocation(href).href}>
292292
{/* ...*/}
293293
</RouterProvider>

0 commit comments

Comments
 (0)