Small fix for indexing (#78)

This commit is contained in:
Chris Weaver
2023-05-22 11:29:25 -07:00
committed by GitHub
parent dd79b9bf79
commit 0c4dcb13c3
2 changed files with 5 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ export const submitIndexRequest = async (
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({ connector_specific_config: values, inputType }),
body: JSON.stringify({ connector_specific_config: values, input_type: inputType }),
}
);