Remove gif from allowed image types

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-03-31 16:56:38 +04:00
parent 687148e2c1
commit bd3869e0f0
3 changed files with 1 additions and 3 deletions

View File

@@ -42,7 +42,6 @@ export const acceptText = {
export const acceptImage = {
"image/jpeg": [".jpg", ".jpeg"],
"image/png": [".png"],
"image/gif": [".gif"],
"image/svg+xml": [".svg"],
"image/webp": [".webp"],
} satisfies Record<string, string[]>;