Skip to content

Commit 278cc8f

Browse files
committed
fix lint
1 parent 5675dd8 commit 278cc8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/APIRequest.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const props = z
2020
})
2121
.strict();
2222
23-
let { path, method, parameters, json, form, query } = props.parse(Astro.props);
23+
let { path, method, parameters, json, form } = props.parse(Astro.props);
2424
2525
if (json && form) {
2626
throw new Error(`[APIRequest] Cannot use both "json" and "form" properties.`);

0 commit comments

Comments
 (0)