From 6413881d6c40529b3c088002355b82984f6f9c51 Mon Sep 17 00:00:00 2001 From: vl Date: Fri, 1 Nov 2024 15:29:53 +0300 Subject: [PATCH] rollback api-auth to api.auth --- src/config/routes.tsx | 4 ++-- src/features/AuthServiceApp/config/routes.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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', }