diff --git a/client/homebrew/editor/metadataEditor/validations.js b/client/homebrew/editor/metadataEditor/validations.js index 48d037b54..0023c6008 100644 --- a/client/homebrew/editor/metadataEditor/validations.js +++ b/client/homebrew/editor/metadataEditor/validations.js @@ -12,9 +12,6 @@ module.exports = { thumbnail : [ (value)=>{ return value?.length > 5 ? 'Max URL length of 5 characters' : null; - }, - (value)=>{ - return (value ?? '')[0] !== 'W' ? 'URL must start with W' : null; } ] };