Remove image files from accepted types on game ban modal

This commit is contained in:
Regalijan 2024-04-15 16:32:08 -04:00
parent c3e60da881
commit 108d15d1fe
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -30,17 +30,10 @@ export default function (props: { isOpen: boolean; onClose: () => void }) {
const toast = useToast();
const fileTypes: { [k: string]: string } = {
gif: "image/gif",
heic: "image/heic",
heif: "image/heif",
jfif: "image/jpeg",
jpeg: "image/jpeg",
jpg: "image/jpg",
m4v: "video/x-m4v",
mkv: "video/x-matroska",
mov: "video/mp4",
mp4: "video/mp4",
png: "image/png",
webp: "image/webp",
webm: "video/webm",
wmv: "video/x-ms-wmv",
};