From 238da1609b8233b4afe01a73f8dc96df5e829cb1 Mon Sep 17 00:00:00 2001 From: rassadin11 Date: Tue, 12 May 2026 18:08:38 +0300 Subject: [PATCH] feat: create kyc page with api --- src/features/kyc/api/kycApi.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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()