Skip to content

Commit 2180d64

Browse files
committed
fix: type check
1 parent bf07eb1 commit 2180d64

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/lib/auth/auth.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type Auth, type BetterAuthOptions, betterAuth } from "better-auth";
1+
import { betterAuth } from "better-auth";
22
import { genericOAuth } from "better-auth/plugins";
33
import {
44
BASE_URL,
@@ -63,7 +63,7 @@ export async function getOidcDiscovery(): Promise<OidcDiscoveryResponse | null>
6363
// Better Auth Configuration
6464
// ============================================================================
6565

66-
export const auth: Auth<BetterAuthOptions> = betterAuth({
66+
export const auth = betterAuth({
6767
debug: !IS_PRODUCTION,
6868
secret: BETTER_AUTH_SECRET,
6969
baseURL: BASE_URL,

0 commit comments

Comments
 (0)