From 186f77d3cb3a1ece95724a77bad36c01ac6392b9 Mon Sep 17 00:00:00 2001 From: Hendrik Eeckhaut Date: Fri, 23 Aug 2024 09:22:21 +0200 Subject: [PATCH] fix: add body to request (#89) --- src/utils/misc.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/misc.ts b/src/utils/misc.ts index 57f17088..02d8248d 100644 --- a/src/utils/misc.ts +++ b/src/utils/misc.ts @@ -210,6 +210,7 @@ export const makePlugin = async ( const resp = await fetch(url, { method, headers, + body: reqBody, }); const body = await extractBodyFromResponse(resp);