fix(bulk-upload): PDF-only file acceptance

Drop non-PDF accept types from file input and update format hint strings
in all three languages. JPEG/PNG/TIFF were never officially supported.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-04-24 19:29:21 +02:00
committed by marcel
parent 76c14ea604
commit c1b221412f
4 changed files with 4 additions and 4 deletions

View File

@@ -68,7 +68,7 @@ let isDragging = $state(false);
<input
type="file"
multiple
accept="application/pdf,image/jpeg,image/png,image/tiff"
accept="application/pdf"
class="sr-only"
onchange={(e) => {
const files = Array.from(e.currentTarget.files ?? []);