fix(SettingsModal): don't remove signer

This commit is contained in:
plebeius.eth
2023-12-20 20:37:19 +01:00
parent bc83a75b04
commit cd03fefb25
+1 -1
View File
@@ -43,7 +43,7 @@ const SettingsModal = ({ isOpen, closeModal }) => {
const accountJson = useMemo(() => {
if (account) {
const { plebbit, karma, unreadNotificationCount, signer, ...restOfAccount } = account;
const { plebbit, karma, unreadNotificationCount, ...restOfAccount } = account;
return stringify({ account: restOfAccount });
}
}, [account]);