From 4637ffdf3dadce9896fbc4befbbb4b32906f4481 Mon Sep 17 00:00:00 2001 From: ConnorYoh <40631091+ConnorYoh@users.noreply.github.com> Date: Fri, 15 Aug 2025 12:28:25 +0100 Subject: [PATCH] Update frontend/src/hooks/tools/ocr/useOCROperation.ts Co-authored-by: James Brunton --- frontend/src/hooks/tools/ocr/useOCROperation.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/hooks/tools/ocr/useOCROperation.ts b/frontend/src/hooks/tools/ocr/useOCROperation.ts index 5d3db412d..419a46f60 100644 --- a/frontend/src/hooks/tools/ocr/useOCROperation.ts +++ b/frontend/src/hooks/tools/ocr/useOCROperation.ts @@ -37,7 +37,6 @@ function stripExt(name: string): string { return i > 0 ? name.slice(0, i) : name; } -// Signature must be (file, params) to match useToolApiCalls interface const buildFormData = (parameters: OCRParameters, file: File): FormData => { const formData = new FormData(); formData.append('fileInput', file);