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 db5881f commit 13ea03cCopy full SHA for 13ea03c
src/content/docs/workers-ai/tutorials/using-bigquery-with-workers-ai.mdx
@@ -224,7 +224,7 @@ export default {
224
try {
225
bqJWT = await generateBQJWT(env);
226
} catch (e) {
227
- return new Response('An error has ocurred while generating the JWT', { status: 500 })
+ return new Response('An error has occurred while generating the JWT', { status: 500 })
228
}
229
},
230
...
@@ -596,7 +596,7 @@ export default {
596
597
} catch (error) {
598
console.log(error);
599
- return new Response("An error has ocurred while generating the JWT", {
+ return new Response("An error has occurred while generating the JWT", {
600
status: 500,
601
});
602
0 commit comments