p
Size: a a a
p
В
p
В
В
p
p
p
p
В
В
В
p
В
p
p
p
В
В
export function* payloadWithCheckedEmail(
typedUser: firebase.User
): Generator<StrictEffect | Promise<void> | ICurrentUser> {
const res = yield call(requestCheckEmail, typedUser?.email)
const { data } = res as AxiosResponse
const { displayName, email, emailVerified, uid, photoURL } = typedUser
if (!data.registered) {
yield auth.signOut()
}