+
+ File System
·
Custom drains
+ ·
+ and more
diff --git a/apps/docs/content/2.frameworks/11.react-router.md b/apps/docs/content/2.frameworks/11.react-router.md
index d142a4db..dfcd2069 100644
--- a/apps/docs/content/2.frameworks/11.react-router.md
+++ b/apps/docs/content/2.frameworks/11.react-router.md
@@ -14,8 +14,8 @@ navigation:
The `evlog/react-router` middleware auto-creates a request-scoped logger accessible via `context.get(loggerContext)` or `useLogger()` and emits a wide event when the response completes.
-::callout{icon="i-lucide-info" color="info"}
-React Router has three [modes](https://reactrouter.com/start/modes): **Framework**, **Data**, and **Declarative**. The `evlog/react-router` middleware requires the middleware API, which is available in **Framework** and **Data** modes only. Declarative mode does not support middleware — use [`evlog/browser`](/core-concepts/client-logging) for client-side logging instead.
+::callout{color="info" icon="i-lucide-info"}
+React Router has three [modes](https://reactrouter.com/start/modes): **Framework**, **Data**, and **Declarative**. The `evlog/react-router` middleware requires the middleware API, which is available in **Framework** and **Data** modes only. Declarative mode does not support middleware — use `evlog/browser` for client-side logging instead.
::
::code-collapse
@@ -102,7 +102,7 @@ export async function loader({ context }: Route.LoaderArgs) {
```
::callout{color="info" icon="i-custom-vite"}
-**Using Vite?** The [`evlog/vite`](/core-concepts/vite-plugin) [plugin](/core-concepts/vite-plugin) replaces the `initLogger()` call with compile-time auto-initialization, strips `log.debug()` from production builds, and injects source locations.
+**Using Vite?** The `evlog/vite` [plugin](/core-concepts/vite-plugin) replaces the `initLogger()` call with compile-time auto-initialization, strips `log.debug()` from production builds, and injects source locations.
::
The `loggerContext` provides typed access to the evlog logger in any loader or action via `context.get(loggerContext)`.