From 17f7e9640d830c00f980f241421f385f9d5ac399 Mon Sep 17 00:00:00 2001 From: Taheera Ahmed <60318348+taheeraahmed@users.noreply.github.com> Date: Sun, 10 Sep 2023 15:03:03 +0200 Subject: [PATCH] Changed api base url --- src/utils/api/api.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/api/api.tsx b/src/utils/api/api.tsx index b1a9f472..6f70b6b1 100644 --- a/src/utils/api/api.tsx +++ b/src/utils/api/api.tsx @@ -2,7 +2,7 @@ /* eslint-disable @typescript-eslint/no-unsafe-return */ import axios from "axios"; -const API_BASE_URL = "http://localhost:8080"; //process.env.BASE_URL; +const API_BASE_URL = "http://localhost:8000"; //process.env.BASE_URL; const HEADERS = { Accept: "application/json", "Content-Type": "application/json",