This commit is contained in:
tonyrewin 2022-10-22 15:55:41 +03:00
parent 40d5a06991
commit becaf7d798

View File

@ -93,7 +93,7 @@ export const apiClient = {
authCheckEmail: async ({ email }) => { authCheckEmail: async ({ email }) => {
// check if email is used // check if email is used
const response = await publicGraphQLClient.query(authCheckEmailQuery, { email }).toPromise() const response = await publicGraphQLClient.query(authCheckEmailQuery, { email }).toPromise()
log.debug('authCheckEmail', response) console.debug('[api-client] authCheckEmail', response)
return response.data.isEmailUsed return response.data.isEmailUsed
}, },
authSendLink: async ({ email }) => { authSendLink: async ({ email }) => {