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