From 7607d3bca71a06d94e35120916cba74455168466 Mon Sep 17 00:00:00 2001 From: Konstantinos Kostarellis Date: Wed, 12 Jul 2023 14:06:03 +0200 Subject: [PATCH] the type definition in the docs is incorrect (#826) --- .../content/main/start-here/getting-started.sveltekit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/content/main/start-here/getting-started.sveltekit.md b/documentation/content/main/start-here/getting-started.sveltekit.md index 33a5fc47e..6428fde4f 100644 --- a/documentation/content/main/start-here/getting-started.sveltekit.md +++ b/documentation/content/main/start-here/getting-started.sveltekit.md @@ -83,7 +83,7 @@ In `src/app.d.ts`, configure your types. The path in `import('$lib/server/lucia. declare global { namespace App { interface Locals { - auth: import("lucia").AuthRequest; + auth: import("lucia-auth").AuthRequest; } } }