mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-24 01:23:03 +03:00
fix: unexpected react warning (#4316)
This commit is contained in:
parent
a94512a3fb
commit
7d6c150ecd
@ -7,7 +7,12 @@ import { refreshRootMetadataAtom } from '@affine/workspace/atom';
|
||||
import { useAtom, useSetAtom } from 'jotai';
|
||||
// eslint-disable-next-line @typescript-eslint/no-restricted-imports
|
||||
import { SessionProvider, useSession } from 'next-auth/react';
|
||||
import { type PropsWithChildren, startTransition, useRef } from 'react';
|
||||
import {
|
||||
type PropsWithChildren,
|
||||
startTransition,
|
||||
useEffect,
|
||||
useRef,
|
||||
} from 'react';
|
||||
|
||||
import { sessionAtom } from '../atoms/cloud-user';
|
||||
import { useOnceSignedInEvents } from '../atoms/event';
|
||||
@ -20,7 +25,7 @@ const SessionDefence = (props: PropsWithChildren) => {
|
||||
const refreshMetadata = useSetAtom(refreshRootMetadataAtom);
|
||||
const onceSignedInEvents = useOnceSignedInEvents();
|
||||
const t = useAFFiNEI18N();
|
||||
|
||||
useEffect(() => {
|
||||
if (sessionInAtom !== session && session.status === 'authenticated') {
|
||||
setSession(session);
|
||||
}
|
||||
@ -48,6 +53,16 @@ const SessionDefence = (props: PropsWithChildren) => {
|
||||
}
|
||||
prevSession.current = session;
|
||||
}
|
||||
}, [
|
||||
session,
|
||||
sessionInAtom,
|
||||
prevSession,
|
||||
setSession,
|
||||
onceSignedInEvents,
|
||||
pushNotification,
|
||||
refreshMetadata,
|
||||
t,
|
||||
]);
|
||||
return props.children;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user