From 7f14069a5cb93a6f44314b69a5705b84eac6b40c Mon Sep 17 00:00:00 2001 From: vl Date: Fri, 1 Nov 2024 14:30:32 +0300 Subject: [PATCH] replace api.auth to api-auth url --- 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 a9e4a8f1..b928525a 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 30ba0ea8..0d48a3e5 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', }