Skip to content

Commit

Permalink
go back to the fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nleroy917 committed Dec 4, 2024
1 parent 9e648a0 commit 4c700a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/hooks/queries/useValidation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const runValidation = async (params: ValidationParams) => {
formData.append('schema_file', params.schema_file);
}
if (schema_registry) {
formData.append('schema_registry', schema_registry);
formData.append('schema_registry', schema_registry || '');
}
const { data: result } = await axios.post<ValidationResult>(`${API_BASE}/eido/validate`, formData, {
headers: {
Expand Down

0 comments on commit 4c700a2

Please sign in to comment.