diff --git a/src/features/kyc/api/kycApi.ts b/src/features/kyc/api/kycApi.ts index a45b3a9..3304e4a 100644 --- a/src/features/kyc/api/kycApi.ts +++ b/src/features/kyc/api/kycApi.ts @@ -1,4 +1,3 @@ -import { KYC_API_URL } from '@shared/config/env' import { getCsrfToken } from '@shared/api/csrf' import { tokenStore } from '@shared/api/tokenStore' @@ -11,6 +10,8 @@ export interface KycResponse { qr_code: string } +const KYC_API_URL = 'https://app.kyc.elcsa.ru' + export async function kycCreate(): Promise { const csrf = await getCsrfToken() const bearer = tokenStore.get()