From 682940303ffa8c9a8bbb48aed0aeceb85107095f Mon Sep 17 00:00:00 2001 From: Rakov Roman Date: Wed, 9 Nov 2022 17:52:39 +0300 Subject: [PATCH] fix(169): auth api test --- src/features/AuthServiceApp/config/routes.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/features/AuthServiceApp/config/routes.tsx b/src/features/AuthServiceApp/config/routes.tsx index 9aa8df43..2cfe4c3d 100644 --- a/src/features/AuthServiceApp/config/routes.tsx +++ b/src/features/AuthServiceApp/config/routes.tsx @@ -1,9 +1,9 @@ import { ENV } from 'config/env' const APIS = { - preproduction: 'https://auth.insports.tv', - production: 'https://auth.insports.tv', - staging: 'https://auth.test.insports.tv', + preproduction: 'https://api.auth.insports.tv', + production: 'https://api.auth.insports.tv', + staging: 'https://api.auth.test.insports.tv', } export const API_ROOT = APIS[ENV]