feat: allow .heic image format in QR upload

This commit is contained in:
trafficlunar 2025-05-08 17:07:37 +01:00
parent 548bbcebc2
commit 75ed926b39

View file

@ -47,7 +47,7 @@ export default function QrUpload({ setQrBytesRaw }: Props) {
const { getRootProps, getInputProps } = useDropzone({ const { getRootProps, getInputProps } = useDropzone({
onDrop, onDrop,
accept: { accept: {
"image/*": [".png", ".jpg", ".jpeg", ".bmp", ".webp"], "image/*": [".png", ".jpg", ".jpeg", ".bmp", ".webp", ".heic"],
}, },
}); });