We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent decbe12 commit 0d44f91Copy full SHA for 0d44f91
src/formatters/networkFormatter.ts
@@ -62,7 +62,7 @@ export async function getFormattedResponseBody(
62
return `<binary data>`;
63
} catch {
64
// buffer() call might fail with CDP exception, in this case we don't print anything in the context
65
- return undefined;
+ return;
66
}
67
68
@@ -85,11 +85,11 @@ export async function getFormattedRequestBody(
85
86
87
// fetchPostData() call might fail with CDP exception, in this case we don't print anything in the context
88
89
90
91
92
93
94
95
function getSizeLimitedString(text: string, sizeLimit: number) {
0 commit comments