import type { ReactNode } from "react"; /** * App-wide client provider mounted once near the root (in `src/routes/__root.tsx`): * * * * Better Auth's React client (`@/lib/auth/client`) needs NO context provider — * its `useSession()` works standalone — so this is a passthrough today. It's * kept as the single, stable mount point for any future client-side providers * (e.g. a toast or theme provider) without churning the root shell. */ export function AuthProvider({ children }: { children: ReactNode }) { return <>{children}; }