From c2b7b6a973719e194611f033ce1344ecd28eecb5 Mon Sep 17 00:00:00 2001 From: Rakov Roman Date: Tue, 8 Nov 2022 15:08:10 +0300 Subject: [PATCH] fix(auth): auth api test --- src/config/routes.tsx | 8 +++----- src/features/AuthServiceApp/config/routes.tsx | 5 ++--- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/src/config/routes.tsx b/src/config/routes.tsx index 20e714cb..97de55eb 100644 --- a/src/config/routes.tsx +++ b/src/config/routes.tsx @@ -8,14 +8,12 @@ export const APIS = { auth: 'https://auth.insports.tv', }, production: { - api: 'https://api.test.insports.tv', - auth: 'https://www.auth.test.insports.tv', - // api: 'https://api.insports.tv', - // auth: 'https://auth.insports.tv', + api: 'https://api.insports.tv', + auth: 'https://auth.test.insports.tv', }, staging: { api: 'https://api.test.insports.tv', - auth: 'https://auth.test.insports.tv', + auth: 'https://www.auth.test.insports.tv', }, } diff --git a/src/features/AuthServiceApp/config/routes.tsx b/src/features/AuthServiceApp/config/routes.tsx index af15d140..cb35a3c0 100644 --- a/src/features/AuthServiceApp/config/routes.tsx +++ b/src/features/AuthServiceApp/config/routes.tsx @@ -2,9 +2,8 @@ import { ENV } from 'config/env' const APIS = { preproduction: 'https://auth.insports.tv', - production: 'https://auth.test.insports.tv', - // production: 'https://auth.insports.tv', - staging: 'https://auth.test.insports.tv', + production: 'https://auth.insports.tv', + staging: 'https://www.auth.test.insports.tv', } export const API_ROOT = APIS[ENV]