690401:1326 fix secutities uuid
This commit is contained in:
@@ -4,9 +4,15 @@
|
||||
import { SessionProvider as NextAuthSessionProvider } from 'next-auth/react';
|
||||
import { AuthSync } from '@/components/auth/auth-sync';
|
||||
|
||||
export default function SessionProvider({ children }: { children: React.ReactNode }) {
|
||||
export default function SessionProvider({
|
||||
children,
|
||||
nonce,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
nonce?: string;
|
||||
}) {
|
||||
return (
|
||||
<NextAuthSessionProvider>
|
||||
<NextAuthSessionProvider nonce={nonce}>
|
||||
<AuthSync />
|
||||
{children}
|
||||
</NextAuthSessionProvider>
|
||||
|
||||
Reference in New Issue
Block a user