diff --git a/src/config/routes.tsx b/src/config/routes.tsx index b928525a..a9e4a8f1 100644 --- a/src/config/routes.tsx +++ b/src/config/routes.tsx @@ -5,12 +5,12 @@ import { ENV, isProduction } from './env' export const APIS = { preproduction: { api: 'https://api.insports.tv', - auth: 'https://api-auth.insports.tv', + auth: 'https://api.auth.insports.tv', auth_old: 'https://auth.insports.tv', }, production: { api: 'https://api.insports.tv', - auth: 'https://api-auth.insports.tv', + auth: 'https://api.auth.insports.tv', auth_old: 'https://auth.insports.tv', }, staging: { diff --git a/src/features/AuthServiceApp/config/routes.tsx b/src/features/AuthServiceApp/config/routes.tsx index 0d48a3e5..30ba0ea8 100644 --- a/src/features/AuthServiceApp/config/routes.tsx +++ b/src/features/AuthServiceApp/config/routes.tsx @@ -3,8 +3,8 @@ import { ENV, isProduction } from 'config/env' import { readSelectedApi } from 'helpers/selectedApi' const APIS = { - preproduction: 'https://api-auth.insports.tv', - production: 'https://api-auth.insports.tv', + preproduction: 'https://api.auth.insports.tv', + production: 'https://api.auth.insports.tv', staging: 'https://api.auth.test.insports.tv', }