From e87fb5b6b1f17d425a91643bfab934cc305e9741 Mon Sep 17 00:00:00 2001 From: ACoolName Date: Sat, 25 May 2024 00:31:33 +0300 Subject: [PATCH] added creds --- src/common.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common.tsx b/src/common.tsx index 4594680..dd6ebac 100644 --- a/src/common.tsx +++ b/src/common.tsx @@ -76,6 +76,7 @@ const API_URL = `${process.env.REACT_APP_API_SCHEME}://${process.env.REACT_APP_A export const api: AxiosInstance = axios.create({ baseURL: API_URL, + withCredentials: true }); export function ApiWrapper(p: { children: ReactNode}) {