From 6a394a0064c62a5659c7c8520f5f78d53e8f96c4 Mon Sep 17 00:00:00 2001 From: lukejianu <71729102+lukejianu@users.noreply.github.com> Date: Sat, 18 Nov 2023 14:54:10 -0500 Subject: [PATCH] reset credentials --- packages/api-client/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/api-client/index.ts b/packages/api-client/index.ts index 0dbf641b0..7a8146abf 100644 --- a/packages/api-client/index.ts +++ b/packages/api-client/index.ts @@ -44,7 +44,7 @@ class APIClient { this.axios = Axios.create({ baseURL: baseURL, headers: { "content-type": "application/json" }, - withCredentials: true, + withCredentials: false, }); }