diff --git a/src/state/session/index.tsx b/src/state/session/index.tsx index 85ae3b5208..dd17284fcd 100644 --- a/src/state/session/index.tsx +++ b/src/state/session/index.tsx @@ -376,11 +376,11 @@ export function Provider({children}: React.PropsWithChildren<{}>) { React.useEffect(() => { if (isDirty.current) { + isDirty.current = false persisted.write('session', { accounts: state.accounts, currentAccount: state.currentAccount, }) - isDirty.current = false } }, [state])