Eslint fix

This commit is contained in:
Owen
2025-09-11 21:32:12 -07:00
parent 3eaca924da
commit f5e44129d8
3 changed files with 7 additions and 7 deletions

View File

@@ -89,7 +89,7 @@ const updateHttpResourceBodySchema = z
.refine(
(data) => {
if (data.headers) {
return validateHeaders(data.headers)
return validateHeaders(data.headers);
}
return true;
},