Merge pull request #36 from public-awesome/cover-image-url-req-update
Disable cover image URL extension check
This commit is contained in:
commit
2c8f66a5d6
@ -294,16 +294,6 @@ const CollectionCreationPage: NextPage = () => {
|
|||||||
if (uploadDetails.uploadMethod === 'existing' && !uploadDetails.baseTokenURI?.includes('ipfs://')) {
|
if (uploadDetails.uploadMethod === 'existing' && !uploadDetails.baseTokenURI?.includes('ipfs://')) {
|
||||||
throw new Error('Please specify a valid base token URI')
|
throw new Error('Please specify a valid base token URI')
|
||||||
}
|
}
|
||||||
if (
|
|
||||||
uploadDetails.uploadMethod === 'existing' &&
|
|
||||||
uploadDetails.imageUrl?.substring(uploadDetails.imageUrl.lastIndexOf('.') + 1) !== 'jpg' &&
|
|
||||||
uploadDetails.imageUrl?.substring(uploadDetails.imageUrl.lastIndexOf('.') + 1) !== 'png' &&
|
|
||||||
uploadDetails.imageUrl?.substring(uploadDetails.imageUrl.lastIndexOf('.') + 1) !== 'jpeg' &&
|
|
||||||
uploadDetails.imageUrl?.substring(uploadDetails.imageUrl.lastIndexOf('.') + 1) !== 'gif' &&
|
|
||||||
uploadDetails.imageUrl?.substring(uploadDetails.imageUrl.lastIndexOf('.') + 1) !== 'svg'
|
|
||||||
) {
|
|
||||||
throw new Error('Please specify a valid cover image URL')
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const checkCollectionDetails = () => {
|
const checkCollectionDetails = () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user