From bc9d439d80b4d8ffd27bf2045379a47b220ce191 Mon Sep 17 00:00:00 2001 From: alexsam29 <69481177+alexsam29@users.noreply.github.com> Date: Thu, 17 Nov 2022 01:51:32 -0500 Subject: [PATCH] Changed blog validation schema to match channel --- src/web/app/src/components/SignUp/Schema/FormSchema.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/app/src/components/SignUp/Schema/FormSchema.tsx b/src/web/app/src/components/SignUp/Schema/FormSchema.tsx index 5abdde48f5..3d0faed35f 100644 --- a/src/web/app/src/components/SignUp/Schema/FormSchema.tsx +++ b/src/web/app/src/components/SignUp/Schema/FormSchema.tsx @@ -53,7 +53,7 @@ export default [ // Third step we collect the user blog and the RSSfeeds from it. object().shape({ - [blogUrl.name]: string().url().required(blogUrl.requiredErrorMsg), + [blogUrl.name]: string(), [blogs.name]: array().of(DiscoveredFeed).min(1, blogs.requiredErrorMsg), [allBlogs.name]: array().of(DiscoveredFeed), [blogOwnership.name]: boolean().test('agreed', blogOwnership.invalidErrorMsg, (val) => !!val),