We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e20b4e commit 5e5f30bCopy full SHA for 5e5f30b
packages/kit/src/runtime/server/page/load_node.js
@@ -208,8 +208,7 @@ export async function load_node({
208
const proxy = new Proxy(response, {
209
get(response, key, _receiver) {
210
async function text() {
211
- const cloned_response = response.clone();
212
- const body = await cloned_response.text();
+ const body = await response.text();
213
214
/** @type {import('types/helper').ResponseHeaders} */
215
const headers = {};
0 commit comments