From f8ac3fbe2bf0b19d09e295544957c8cdb58c28f6 Mon Sep 17 00:00:00 2001 From: Michael Pellegrini <466696+mpellegrini@users.noreply.github.com> Date: Wed, 2 Oct 2024 18:45:49 -0400 Subject: [PATCH] chore(example): testing out affected --- packages/auth-lucia/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/auth-lucia/src/index.ts b/packages/auth-lucia/src/index.ts index 5313de8..1df54e2 100644 --- a/packages/auth-lucia/src/index.ts +++ b/packages/auth-lucia/src/index.ts @@ -25,7 +25,7 @@ export type { Session, User } from 'lucia' declare module 'lucia' { interface Register { - DatabaseUserAttributes: { username: string } + DatabaseUserAttributes: { password: string; username: string } Lucia: typeof lucia } }