fix(create): uploading file adds to the existing file list, dedupe file list #208

Merged
enes merged 1 commits from 184-upload-add into staging 2024-09-19 11:29:45 +00:00
Showing only changes of commit 6d78d9ed64 - Show all commits

View File

@ -301,7 +301,15 @@ export const CreatePage = () => {
const handleSelectFiles = (event: React.ChangeEvent<HTMLInputElement>) => {
if (event.target.files) {
setSelectedFiles(Array.from(event.target.files))
// Get the uploaded files
const files = Array.from(event.target.files)
// Remove duplicates based on the file.name
setSelectedFiles((p) =>
[...p, ...files].filter(
(file, i, array) => i === array.findIndex((t) => t.name === file.name)
)
)
}
}