From a1e653bbf721c12909692d1371310565ebf524a6 Mon Sep 17 00:00:00 2001 From: nxtkofi Date: Tue, 21 Apr 2026 20:52:49 +0200 Subject: [PATCH] fix(types): replace any with proper type in better-auth auth Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- convex/betterAuth/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convex/betterAuth/auth.ts b/convex/betterAuth/auth.ts index 661cbb2..55f1aa6 100644 --- a/convex/betterAuth/auth.ts +++ b/convex/betterAuth/auth.ts @@ -1,3 +1,3 @@ import { createAuth } from '../auth'; -export const auth = createAuth({} as any); +export const auth = createAuth({} as Parameters[0]);