diff --git a/src/components/modals/SettingsModal.jsx b/src/components/modals/SettingsModal.jsx index fbc33981..f5eefe82 100755 --- a/src/components/modals/SettingsModal.jsx +++ b/src/components/modals/SettingsModal.jsx @@ -31,7 +31,7 @@ const SettingsModal = ({ isOpen, closeModal }) => { const accountJson = useMemo(() => { if (account) { - const { plebbit, ...restOfAccount } = account; + const { plebbit, karma, unreadNotificationCount, ...restOfAccount } = account; return stringify({ account: restOfAccount }); } }, [account]);