0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-26 11:42:39 +00:00

remove a silly rule

This commit is contained in:
Gazook89
2022-11-05 11:32:35 -05:00
parent 8c52a253dc
commit edce191c29

View File

@@ -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;
}
]
};