From bd86fc53cde2072dc126d79c91fdb0218e1cdd38 Mon Sep 17 00:00:00 2001 From: Shivang Rawat <114716075+ShivangRawat30@users.noreply.github.com> Date: Tue, 1 Aug 2023 00:02:13 +0530 Subject: [PATCH 1/6] Update signupform.style.js Signed-off-by: Shivang Rawat <114716075+ShivangRawat30@users.noreply.github.com> --- site/src/components/SignupForm/signupform.style.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/src/components/SignupForm/signupform.style.js b/site/src/components/SignupForm/signupform.style.js index ec887e0..b31cfc0 100644 --- a/site/src/components/SignupForm/signupform.style.js +++ b/site/src/components/SignupForm/signupform.style.js @@ -29,7 +29,7 @@ const SignupFormWrapper = styled.section` margin-bottom: 3rem; margin-top: 2rem; text-align: justify; - color: #ececed; + color: #8b8b8f; text-align: left; } @@ -247,4 +247,4 @@ const SignupFormWrapper = styled.section` } `; -export default SignupFormWrapper; \ No newline at end of file +export default SignupFormWrapper; From 0fd023e928376d26bc7524964df5880af5475230 Mon Sep 17 00:00:00 2001 From: Karan Thakur Date: Tue, 1 Aug 2023 11:14:16 +0000 Subject: [PATCH 2/6] fix: build workflow Signed-off-by: Karan Thakur --- site/src/components/SignupForm/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/src/components/SignupForm/index.js b/site/src/components/SignupForm/index.js index 2d3dd85..26146e8 100644 --- a/site/src/components/SignupForm/index.js +++ b/site/src/components/SignupForm/index.js @@ -47,7 +47,7 @@ const SignupForm = ({ onSubmit }) => { const [errorMessage, setErrorMessage] = useState(''); // const errorAccounts = "Please provide at least one account"; - const errorRole = ''; + // const errorRole = ''; useEffect(() => { if (formSubmitted) { @@ -63,7 +63,7 @@ const SignupForm = ({ onSubmit }) => { behavior: 'smooth' }); } - }, [formSubmitted, memberFormOne]); + }, [formSubmitted, memberFormOne, onSubmit]); const PlayFormComponent = () => { return ( From 3510edd35098936356c61f9fcc204d3ab7cb400c Mon Sep 17 00:00:00 2001 From: Gaurav Chadha <65453826+Chadha93@users.noreply.github.com> Date: Wed, 16 Aug 2023 18:46:59 +0530 Subject: [PATCH 3/6] Revert "Revert "[chore] Update webhook URL for signup form"" --- site/src/components/SignupForm/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/components/SignupForm/index.js b/site/src/components/SignupForm/index.js index 2d3dd85..4d49df5 100644 --- a/site/src/components/SignupForm/index.js +++ b/site/src/components/SignupForm/index.js @@ -53,7 +53,7 @@ const SignupForm = ({ onSubmit }) => { if (formSubmitted) { onSubmit(); - axios.post("https://hook.us1.make.com/s4jo47a8ydq6uk7gg16wuukgr4l52p8c", { + axios.post("https://hook.us1.make.com/r5qgpjel5tlhtyndcgjvkrdkoc65417y", { memberFormOne }); From ff55c3f8a6c40a87f0009e4963307b8f7ade4926 Mon Sep 17 00:00:00 2001 From: Gaurav Chadha <65453826+Chadha93@users.noreply.github.com> Date: Thu, 17 Aug 2023 22:35:27 +0530 Subject: [PATCH 4/6] Revert "fix: build workflow" --- site/src/components/SignupForm/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/src/components/SignupForm/index.js b/site/src/components/SignupForm/index.js index 71a82e8..4d49df5 100644 --- a/site/src/components/SignupForm/index.js +++ b/site/src/components/SignupForm/index.js @@ -47,7 +47,7 @@ const SignupForm = ({ onSubmit }) => { const [errorMessage, setErrorMessage] = useState(''); // const errorAccounts = "Please provide at least one account"; - // const errorRole = ''; + const errorRole = ''; useEffect(() => { if (formSubmitted) { @@ -63,7 +63,7 @@ const SignupForm = ({ onSubmit }) => { behavior: 'smooth' }); } - }, [formSubmitted, memberFormOne, onSubmit]); + }, [formSubmitted, memberFormOne]); const PlayFormComponent = () => { return ( From e2173cc80ba1fbdd2220896f2fa3e56fb0afa4fd Mon Sep 17 00:00:00 2001 From: Karan Singh Thakur Date: Sun, 20 Aug 2023 21:24:52 +0530 Subject: [PATCH 5/6] update signupForm Signed-off-by: Karan Singh Thakur --- site/src/components/SignupForm/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/components/SignupForm/index.js b/site/src/components/SignupForm/index.js index 4d49df5..27a7412 100644 --- a/site/src/components/SignupForm/index.js +++ b/site/src/components/SignupForm/index.js @@ -47,7 +47,6 @@ const SignupForm = ({ onSubmit }) => { const [errorMessage, setErrorMessage] = useState(''); // const errorAccounts = "Please provide at least one account"; - const errorRole = ''; useEffect(() => { if (formSubmitted) { @@ -63,6 +62,7 @@ const SignupForm = ({ onSubmit }) => { behavior: 'smooth' }); } + // eslint-disable-next-line react-hooks/exhaustive-deps }, [formSubmitted, memberFormOne]); const PlayFormComponent = () => { From 5d6dcc1a3f34465562a921bce5a7021d225c3d06 Mon Sep 17 00:00:00 2001 From: Gaurav Chadha <65453826+Chadha93@users.noreply.github.com> Date: Fri, 1 Sep 2023 17:52:48 +0530 Subject: [PATCH 6/6] Update webhook Signed-off-by: Gaurav Chadha <65453826+Chadha93@users.noreply.github.com> --- site/src/components/SignupForm/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/components/SignupForm/index.js b/site/src/components/SignupForm/index.js index 27a7412..cf81b50 100644 --- a/site/src/components/SignupForm/index.js +++ b/site/src/components/SignupForm/index.js @@ -52,7 +52,7 @@ const SignupForm = ({ onSubmit }) => { if (formSubmitted) { onSubmit(); - axios.post("https://hook.us1.make.com/r5qgpjel5tlhtyndcgjvkrdkoc65417y", { + axios.post("https://hook.us1.make.com/x4crqi16j8wfhctosk8y47fj6gknyvvh", { memberFormOne });