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 26f1ed0 commit 0e2cdf4Copy full SHA for 0e2cdf4
src/content/docs/workers/examples/fetch-json.mdx
@@ -32,6 +32,7 @@ export default {
32
if (contentType.includes("application/json")) {
33
return { contentType, result: JSON.stringify(await response.json()) };
34
}
35
+
36
return { contentType, result: await response.text() };
37
38
0 commit comments