From 3adbb10ff6688b4374b8004a27ed982129aa8815 Mon Sep 17 00:00:00 2001 From: Eric Gullickson <16152721+ericgullickson@users.noreply.github.com> Date: Sat, 7 Feb 2026 16:26:10 -0600 Subject: [PATCH] fix: OCR Timout still --- frontend/src/features/vehicles/hooks/useVinOcr.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/features/vehicles/hooks/useVinOcr.ts b/frontend/src/features/vehicles/hooks/useVinOcr.ts index 8845432..9554259 100644 --- a/frontend/src/features/vehicles/hooks/useVinOcr.ts +++ b/frontend/src/features/vehicles/hooks/useVinOcr.ts @@ -49,7 +49,7 @@ async function extractVinFromImage(file: File): Promise { const response = await apiClient.post('/ocr/extract/vin', formData, { headers: { 'Content-Type': 'multipart/form-data' }, - timeout: 30000, // 30 seconds for OCR processing + timeout: 120000, // 120 seconds for OCR processing }); const data = response.data;