CHORE(merge): merge from develop
- Initial setup and all features from develop branch - Includes: auth, deploy, docker, style fixes - K3S deployment configuration
This commit is contained in:
11
nextjs/components/providers/SessionProvider.tsx
Normal file
11
nextjs/components/providers/SessionProvider.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { SessionProvider as NextAuthSessionProvider } from "next-auth/react";
|
||||
import { ReactNode } from "react";
|
||||
|
||||
export default function SessionProvider({ children }: { children: ReactNode }) {
|
||||
return (
|
||||
<NextAuthSessionProvider refetchInterval={0} refetchOnWindowFocus={true}>
|
||||
{children}
|
||||
</NextAuthSessionProvider>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user