From 5e259d1cdfc6c5b65c631c7066be9da6b25a37af Mon Sep 17 00:00:00 2001 From: Andrei Dekterev Date: Fri, 25 Nov 2022 16:40:46 +0300 Subject: [PATCH] fix(change api): change auth api --- src/config/routes.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config/routes.tsx b/src/config/routes.tsx index b307e805..8a397573 100644 --- a/src/config/routes.tsx +++ b/src/config/routes.tsx @@ -5,15 +5,15 @@ import { ENV, isProduction } from './env' export const APIS = { preproduction: { api: 'https://api.insports.tv', - auth: 'https://auth.insports.tv', + auth: 'https://api.auth.insports.tv', }, production: { api: 'https://api.insports.tv', - auth: 'https://auth.insports.tv', + auth: 'https://api.auth.insports.tv', }, staging: { api: 'https://api.test.insports.tv', - auth: 'https://auth.test.insports.tv', + auth: 'https://api.auth.test.insports.tv', }, }