From 2bebe4e793e3e8460c2dc9cdcd86a22137dd35e6 Mon Sep 17 00:00:00 2001 From: Rakov Roman Date: Mon, 7 Nov 2022 16:50:43 +0300 Subject: [PATCH] fix(auth): fixed auth api --- src/config/routes.tsx | 2 +- src/features/AuthServiceApp/config/routes.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/routes.tsx b/src/config/routes.tsx index 20e714cb..025b19ab 100644 --- a/src/config/routes.tsx +++ b/src/config/routes.tsx @@ -9,7 +9,7 @@ export const APIS = { }, production: { api: 'https://api.test.insports.tv', - auth: 'https://www.auth.test.insports.tv', + auth: 'https://auth.test.insports.tv', // api: 'https://api.insports.tv', // auth: 'https://auth.insports.tv', }, diff --git a/src/features/AuthServiceApp/config/routes.tsx b/src/features/AuthServiceApp/config/routes.tsx index 4000b654..af15d140 100644 --- a/src/features/AuthServiceApp/config/routes.tsx +++ b/src/features/AuthServiceApp/config/routes.tsx @@ -2,7 +2,7 @@ import { ENV } from 'config/env' const APIS = { preproduction: 'https://auth.insports.tv', - production: 'https://www.auth.test.insports.tv', + production: 'https://auth.test.insports.tv', // production: 'https://auth.insports.tv', staging: 'https://auth.test.insports.tv', }