GitHub pages flow fix, image errors and field duplication and field unfocus in mod submission fix #83

Merged
freakoverse merged 22 commits from staging into master 2024-10-18 10:08:43 +00:00
Showing only changes of commit 4d9c68d741 - Show all commits

View File

@ -56,7 +56,7 @@ export const isValidUrl = (url: string) => {
}
export const isValidImageUrl = (url: string) => {
const regex = /\.(jpeg|jpg|gif|png)$/
const regex = /\.(jpeg|jpg|gif|png|ico|bmp|webp|avif|jxl)$/
return regex.test(url)
}