From 3df9f83e1e9e11b30c54eea8c67c1d5985463eb9 Mon Sep 17 00:00:00 2001 From: "Aidar Shaikhutdin @makeweb.space" Date: Thu, 18 May 2023 20:24:44 +0600 Subject: [PATCH] fix: char btoa issue --- src/components/EmailEnterPage/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/EmailEnterPage/index.tsx b/src/components/EmailEnterPage/index.tsx index fe933db..3a2820a 100644 --- a/src/components/EmailEnterPage/index.tsx +++ b/src/components/EmailEnterPage/index.tsx @@ -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)) })