fixing seal failure message

This commit is contained in:
Roland Osborne 2023-02-23 13:02:39 -08:00
parent 10cbd3eaab
commit 91f6bdb6b5

View File

@ -283,8 +283,9 @@ export function useProfile() {
updateState({ saving: false });
}
catch(err) {
console(err);
console.log(err);
updateState({ saving: false });
throw new Error('seal operation failed');
}
}
},