fix: char btoa issue

This commit is contained in:
Aidar Shaikhutdin @makeweb.space 2023-05-18 20:24:44 +06:00
parent 7995a62439
commit 3df9f83e1e

View File

@ -50,8 +50,8 @@ function EmailEnterPage(): JSX.Element {
})
.then(({ user }) => {
// TODO: remove this when understand btoa issue
if (user?.profile?.sign?.sign) {
user.profile.sign.sign = ''
if (user?.profile?.sign?.char) {
user.profile.sign.char = ''
}
dispatch(actions.user.update(user))
})