From 2559d2dbdb39ddcd62205753aabcad3a7926fcf0 Mon Sep 17 00:00:00 2001 From: Jan Bader Date: Mon, 29 Jan 2024 22:41:36 +0100 Subject: [PATCH] Do not specify content type --- web/src/api.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/web/src/api.ts b/web/src/api.ts index db77552..83fc203 100644 --- a/web/src/api.ts +++ b/web/src/api.ts @@ -15,7 +15,6 @@ export function POST(path: string, body: FormData | string | null) { method: "POST", headers: { ...sessionStore.AuthHeaders, - "Content-Type": "application/json" }, body: body, });