From edce191c2961992db31ad31e695f83e261bd84ef Mon Sep 17 00:00:00 2001 From: Gazook89 <58999374+Gazook89@users.noreply.github.com> Date: Sat, 5 Nov 2022 11:32:35 -0500 Subject: [PATCH] remove a silly rule --- client/homebrew/editor/metadataEditor/validations.js | 3 --- 1 file changed, 3 deletions(-) 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; } ] };