From c775fed17ded11ee62d1d52c11c6fede7a39c5e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Sz=C3=BCcs?= <127139797+balazs-szucs@users.noreply.github.com> Date: Wed, 18 Feb 2026 12:01:58 +0100 Subject: [PATCH] fix(form-fill): fix hardcoded response (#5755) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Description of Changes Closes: #5752 --- ## Checklist ### General - [ ] I have read the [Contribution Guidelines](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/CONTRIBUTING.md) - [ ] I have read the [Stirling-PDF Developer Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md) (if applicable) - [ ] I have read the [How to add new languages to Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/HowToAddNewLanguage.md) (if applicable) - [ ] I have performed a self-review of my own code - [ ] My changes generate no new warnings ### Documentation - [ ] I have updated relevant docs on [Stirling-PDF's doc repo](https://github.com/Stirling-Tools/Stirling-Tools.github.io/blob/main/docs/) (if functionality has heavily changed) - [ ] I have read the section [Add New Translation Tags](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/HowToAddNewLanguage.md#add-new-translation-tags) (for new translation tags only) ### Translations (if applicable) - [ ] I ran [`scripts/counter_translation.py`](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/docs/counter_translation.md) ### UI Changes (if applicable) - [ ] Screenshots or videos demonstrating the UI changes are attached (e.g., as comments or direct attachments in the PR) ### Testing (if applicable) - [ ] I have tested my changes locally. Refer to the [Testing Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md#6-testing) for more details. Signed-off-by: Balázs Szücs --- frontend/src/proprietary/tools/formFill/formApi.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/frontend/src/proprietary/tools/formFill/formApi.ts b/frontend/src/proprietary/tools/formFill/formApi.ts index a4c5ed20ae..8b2c8d409f 100644 --- a/frontend/src/proprietary/tools/formFill/formApi.ts +++ b/frontend/src/proprietary/tools/formFill/formApi.ts @@ -16,10 +16,7 @@ export async function fetchFormFieldsWithCoordinates( const response = await apiClient.post( '/api/v1/form/fields-with-coordinates', - formData, - { - headers: { 'Content-Type': 'multipart/form-data' }, - } + formData ); return response.data; } @@ -42,7 +39,6 @@ export async function fillFormFields( formData.append('flatten', String(flatten)); const response = await apiClient.post('/api/v1/form/fill', formData, { - headers: { 'Content-Type': 'multipart/form-data' }, responseType: 'blob', }); return response.data;