_auth-notused
This commit is contained in:
parent
8cfbe8303c
commit
fecce70aaa
|
@ -12,7 +12,6 @@ import {
|
|||
useContext,
|
||||
} from 'solid-js'
|
||||
|
||||
import { authApiClient } from '../graphql/client/auth'
|
||||
import { apiClient } from '../graphql/client/core'
|
||||
import { getToken, resetToken, setToken } from '../graphql/privateGraphQLClient'
|
||||
import { showModal } from '../stores/ui'
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
import { ApiError } from '../error'
|
||||
import authConfirmEmailMutation from '../mutation/auth/auth-confirm-email'
|
||||
import authLogoutQuery from '../mutation/auth/auth-logout'
|
||||
import authRegisterMutation from '../mutation/auth/auth-register'
|
||||
import authSendLinkMutation from '../mutation/auth/auth-send-link'
|
||||
import mySession from '../mutation/auth/my-session'
|
||||
import authConfirmEmailMutation from '../mutation/_auth/auth-confirm-email'
|
||||
import authLogoutQuery from '../mutation/_auth/auth-logout'
|
||||
import authRegisterMutation from '../mutation/_auth/auth-register'
|
||||
import authSendLinkMutation from '../mutation/_auth/auth-send-link'
|
||||
import mySession from '../mutation/_auth/my-session'
|
||||
import { getToken, getPrivateClient } from '../privateGraphQLClient'
|
||||
import { getPublicClient } from '../publicGraphQLClient'
|
||||
import authCheckEmailQuery from '../query/auth/auth-check-email'
|
||||
import authLoginQuery from '../query/auth/auth-login'
|
||||
import authCheckEmailQuery from '../query/_auth/auth-check-email'
|
||||
import authLoginQuery from '../query/_auth/auth-login'
|
||||
import {
|
||||
ResendVerifyEmailInput,
|
||||
ResetPasswordInput,
|
|
@ -1,4 +1,4 @@
|
|||
import { authApiClient as apiClient } from '../graphql/client/auth'
|
||||
import { authApiClient as apiClient } from '../graphql/client/_auth'
|
||||
|
||||
export const register = async ({
|
||||
name,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { createSignal } from 'solid-js'
|
||||
|
||||
import { authApiClient as apiClient } from '../graphql/client/auth'
|
||||
import { authApiClient as apiClient } from '../graphql/client/_auth'
|
||||
|
||||
const [emailChecks, setEmailChecks] = createSignal<{ [email: string]: boolean }>({})
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user