From a68a1fcbffddbe18ac6e5125a1304cec30510d2f Mon Sep 17 00:00:00 2001 From: Jiasheng Date: Sat, 13 Jul 2024 13:45:34 +0800 Subject: [PATCH] Update lucia.md --- docs/guides/authentication/lucia.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/authentication/lucia.md b/docs/guides/authentication/lucia.md index 235ce20c..5fb86ead 100644 --- a/docs/guides/authentication/lucia.md +++ b/docs/guides/authentication/lucia.md @@ -40,7 +40,7 @@ The data field names and types in the `session` model must exactly match the one Lucia connects to your database via an adapter, which provides a set of basic, standardized querying methods that Lucia can use. -Lucia has its own Prisma adapter `@lucia-auth/adapter-prisma`, which provides a set of basic, standardized querying methods. Since ZenStack is based on Prisma, you can use PrismaAdapter for the job: +Lucia has its own Prisma adapter `@lucia-auth/adapter-prisma`. Since ZenStack is based on Prisma, you can use PrismaAdapter for the job: ```tsx title='/lib/auth.ts' import { PrismaAdapter } from "@lucia-auth/adapter-prisma";