From 6e724e8c49c7063610db457c131b95b2c0da2faa Mon Sep 17 00:00:00 2001 From: Bereket Engida Date: Wed, 18 Dec 2024 10:03:25 +0300 Subject: [PATCH] chore(demo): fix import path --- demo/nextjs/lib/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/nextjs/lib/auth.ts b/demo/nextjs/lib/auth.ts index 83c95db0..a1fe5b92 100644 --- a/demo/nextjs/lib/auth.ts +++ b/demo/nextjs/lib/auth.ts @@ -4,7 +4,6 @@ import { admin, multiSession, organization, - passkey, twoFactor, oneTap, oAuthProxy, @@ -17,6 +16,7 @@ import { resend } from "./email/resend"; import { MysqlDialect } from "kysely"; import { createPool } from "mysql2/promise"; import { nextCookies } from "better-auth/next-js"; +import { passkey } from "better-auth/plugins/passkey"; const from = process.env.BETTER_AUTH_EMAIL || "delivered@resend.dev"; const to = process.env.TEST_EMAIL || "";