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;