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]