feat: allow .heic image format in QR upload
This commit is contained in:
parent
548bbcebc2
commit
75ed926b39
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ export default function QrUpload({ setQrBytesRaw }: Props) {
|
|||
const { getRootProps, getInputProps } = useDropzone({
|
||||
onDrop,
|
||||
accept: {
|
||||
"image/*": [".png", ".jpg", ".jpeg", ".bmp", ".webp"],
|
||||
"image/*": [".png", ".jpg", ".jpeg", ".bmp", ".webp", ".heic"],
|
||||
},
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue