From 443fd9a91384b3278b6d3b2702e79168c38a2a46 Mon Sep 17 00:00:00 2001 From: Leonardo Montini Date: Sat, 26 Apr 2025 18:57:11 +0200 Subject: [PATCH] docs: fix broken link --- docs/start/framework/react/middleware.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/start/framework/react/middleware.md b/docs/start/framework/react/middleware.md index c908f5b8956..7eb75ba032f 100644 --- a/docs/start/framework/react/middleware.md +++ b/docs/start/framework/react/middleware.md @@ -263,7 +263,7 @@ const requestLogger = createMiddleware() ## Reading/Modifying the Server Response -Middleware that uses the `server` method executes in the same context as server functions, so you can follow the exact same [Server Function Context Utilities](./server-functions#server-function-context) to read and modify anything about the request headers, status codes, etc. +Middleware that uses the `server` method executes in the same context as server functions, so you can follow the exact same [Server Function Context Utilities](../server-functions#server-function-context) to read and modify anything about the request headers, status codes, etc. ## Modifying the Client Request