From 9547cd097a4277ff159069b491ec06cd64c11593 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Sun, 5 May 2024 02:30:29 +0000 Subject: [PATCH] fix(api): :bug: Disable custom security headers on frontends --- server.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/server.ts b/server.ts index 80555fff..ef238cf7 100644 --- a/server.ts +++ b/server.ts @@ -215,10 +215,6 @@ export const createServer = ( ); } - return clientResponse( - await proxy.arrayBuffer(), - proxy.status, - proxy.headers.toJSON(), - ); + return proxy; }, });