feat([2fd88f42]): implement smart PLZ column selection

This commit is contained in:
2026-02-04 14:18:23 +00:00
parent 56397f80dc
commit 3a4f7ae790
3 changed files with 110 additions and 43 deletions

View File

@@ -44,7 +44,7 @@ const FileUpload: React.FC<FileUploadProps> = ({ onUploadSuccess, setIsLoading,
'Content-Type': 'multipart/form-data',
},
});
onUploadSuccess(response.data.filters);
onUploadSuccess(response.data);
} catch (error: any) {
if (axios.isAxiosError(error) && error.response) {
setError(`Upload failed: ${error.response.data.detail || error.message}`);