From 10a3ed4b40cd201b8b9f742c805ea67d19f1e39c Mon Sep 17 00:00:00 2001 From: guru_sainath Date: Mon, 21 Aug 2023 18:15:47 +0530 Subject: [PATCH] chore: updated default api base_url --- 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 900d5d15f5f..cd7076a7a1c 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;