diff --git a/src/views/settings/account-data-editor/account-data-editor.tsx b/src/views/settings/account-data-editor/account-data-editor.tsx index 4e76af8e..9ff2a7bd 100644 --- a/src/views/settings/account-data-editor/account-data-editor.tsx +++ b/src/views/settings/account-data-editor/account-data-editor.tsx @@ -22,13 +22,7 @@ const AccountDataEditor = () => { const [text, setText] = useState(''); const [showEditor, setShowEditor] = useState(false); - const accountJson = useMemo( - () => - stringify({ - account: { ...account }, - }), - [account], - ); + const accountJson = useMemo(() => stringify({ account: { ...account, plebbit: undefined, karma: undefined, unreadNotificationCount: undefined } }), [account]); useEffect(() => { setText(accountJson);