feat: more lax requirements for custom images

This commit is contained in:
trafficlunar 2025-11-12 19:51:18 +00:00
parent 46a168b56c
commit 6386e8a652
2 changed files with 13 additions and 11 deletions

View file

@ -228,7 +228,7 @@ export default function SubmitForm() {
<hr className="grow border-zinc-300" />
</div>
<div className="max-w-md w-full self-center">
<div className="max-w-md w-full self-center flex flex-col items-center">
<Dropzone onDrop={handleDrop}>
<p className="text-center text-sm">
Drag and drop your images here
@ -236,6 +236,8 @@ export default function SubmitForm() {
or click to open
</p>
</Dropzone>
<span className="text-xs text-zinc-400 mt-2">Animated images currently not supported.</span>
</div>
<ImageList files={files} setFiles={setFiles} />