From d5cc4d662ec9c6592acd0ee7f78eb8f526f3aed8 Mon Sep 17 00:00:00 2001 From: Francisco Pessano <76450203+FranP-code@users.noreply.github.com> Date: Mon, 25 Apr 2022 20:33:25 -0300 Subject: [PATCH] Auth critical bugfix --- src/Pages/Auth/Auth.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Pages/Auth/Auth.jsx b/src/Pages/Auth/Auth.jsx index 07b34fa..6dfdfcc 100644 --- a/src/Pages/Auth/Auth.jsx +++ b/src/Pages/Auth/Auth.jsx @@ -27,9 +27,9 @@ function Auth() { let requestUrl if (process.env.REACT_APP_ENV_MODE === "production") { - requestUrl = "http://localhost:5050/api/v1/auth" - } else { requestUrl = "https://telegram-to-notion-backend.herokuapp.com/api/v1/auth" + } else { + requestUrl = "http://localhost:5050/api/v1/auth" } axios({ @@ -100,4 +100,4 @@ function Auth() { ) } -export default Auth \ No newline at end of file +export default Auth