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 922a415 commit dcf63e0Copy full SHA for dcf63e0
src/components/APIRequest.astro
@@ -20,7 +20,7 @@ const props = z
20
})
21
.strict();
22
23
-let { path, method, parameters, json, form, query } = props.parse(Astro.props);
+let { path, method, parameters, json, form } = props.parse(Astro.props);
24
25
if (json && form) {
26
throw new Error(`[APIRequest] Cannot use both "json" and "form" properties.`);
0 commit comments