Merge branch 'auth' into testing

This commit is contained in:
tonyrewin 2022-11-02 10:11:13 +03:00
commit 416a3f0ad5
2 changed files with 0 additions and 2 deletions

View File

@ -51,7 +51,6 @@ export const ForgotPasswordForm = () => {
setIsSubmitting(true)
try {
setSubmitError('')
signSendLink({ email: email(), lang: locale() })
} catch (error) {
setSubmitError(error.message)

View File

@ -30,7 +30,6 @@ import incrementView from '../graphql/mutation/increment-view'
import myChats from '../graphql/query/my-chats'
const FEED_SIZE = 50
const REACTIONS_PAGE_SIZE = 100
type ApiErrorCode = 'unknown' | 'email_not_confirmed' | 'user_not_found' | 'user_already_exists'