Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions docs/devtools.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,11 @@ const TanStackRouterDevtools =
? () => null // Render nothing in production
: React.lazy(() =>
// Lazy load in development
import('@tanstack/react-router-devtools').then(
(res) => ({
default: res.TanStackRouterDevtools
// For Embedded Mode
// default: res.TanStackRouterDevtoolsPanel
import("@tanstack/react-router-devtools").then(
({ TanStackRouterDevtools }) => ({
default: TanStackRouterDevtools,
})
),
)
)
```

Expand Down