We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a426fa8 commit b22e4b7Copy full SHA for b22e4b7
search/src/components/UploadFile.tsx
@@ -56,13 +56,11 @@ export const UploadFile = () => {
56
.replace(/=+$/, ""); // Remove ending '='
57
58
const file_name = file()?.name;
59
- const file_mime_type = file()?.type;
60
61
// eslint-disable-next-line @typescript-eslint/no-explicit-any
62
const requestBody: any = {
63
base64_file: base64File,
64
file_name: file_name,
65
- file_mime_type: file_mime_type,
66
link: link(),
67
tag_set: tagSet().split(","),
68
};
0 commit comments