From 085db898913ee46293f68b4c23c2a910356233be Mon Sep 17 00:00:00 2001 From: Jack Farley Date: Tue, 10 Jun 2025 09:54:14 +1200 Subject: [PATCH] fix: correct link to locals Fix link to server hooks locals --- documentation/docs/40-best-practices/03-auth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/40-best-practices/03-auth.md b/documentation/docs/40-best-practices/03-auth.md index 40ceb28acdbb..349548fdf1e3 100644 --- a/documentation/docs/40-best-practices/03-auth.md +++ b/documentation/docs/40-best-practices/03-auth.md @@ -14,7 +14,7 @@ In contrast, JWT generally are not checked against a datastore, which means they ## Integration points -Auth [cookies](@sveltejs-kit#Cookies) can be checked inside [server hooks](hooks#Server-hooks). If a user is found matching the provided credentials, the user information can be stored in [`locals`](hooks#Server-hooks-handle). +Auth [cookies](@sveltejs-kit#Cookies) can be checked inside [server hooks](hooks#Server-hooks). If a user is found matching the provided credentials, the user information can be stored in [`locals`](hooks#Server-hooks-locals). ## Guides