refactor(auth): remove unused SessionProvider wrapper

Remove the passthrough AuthSessionProvider component and its usage
in layout. better-auth hooks work without a provider wrapper.
This commit is contained in:
2026-04-06 23:22:33 -04:00
parent c6017b2f78
commit cfa93da149
2 changed files with 20 additions and 34 deletions

View File

@@ -1,11 +0,0 @@
"use client"
import { ReactNode } from "react"
interface Props {
children: ReactNode
}
export default function AuthSessionProvider({ children }: Props) {
return <>{children}</>
}