From 9bb62545150fe97c5185803526f31c1015e4034f Mon Sep 17 00:00:00 2001 From: guru_sainath Date: Mon, 21 Aug 2023 18:17:32 +0530 Subject: [PATCH] chore: updated default api base_url (#1922) --- apps/space/services/api.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/space/services/api.service.ts b/apps/space/services/api.service.ts index 900d5d15f..cd7076a7a 100644 --- a/apps/space/services/api.service.ts +++ b/apps/space/services/api.service.ts @@ -3,7 +3,7 @@ import axios from "axios"; // js cookie import Cookies from "js-cookie"; -const base_url: string | null = "https://boarding.plane.so"; +const base_url: string | null = "http://localhost:8000"; abstract class APIService { protected baseURL: string;