From 247a08902d18dfa3c718c6ff592bb2543c103539 Mon Sep 17 00:00:00 2001 From: Farber Denis Date: Tue, 27 Jun 2023 13:02:43 +0300 Subject: [PATCH] fix(#in701): auth requests fix --- 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 15a67b41..c7d33438 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', }, }