From 2188783fc4b277e40d6199912d3cdb628fe72336 Mon Sep 17 00:00:00 2001 From: Shreya Malviya Date: Wed, 4 Aug 2021 13:20:54 +0530 Subject: [PATCH] cc: Redirect to landing page after registration instead of getting started page --- monkey/monkey_island/cc/ui/src/components/pages/RegisterPage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkey/monkey_island/cc/ui/src/components/pages/RegisterPage.js b/monkey/monkey_island/cc/ui/src/components/pages/RegisterPage.js index 2ebd9baf5..7dfd51276 100644 --- a/monkey/monkey_island/cc/ui/src/components/pages/RegisterPage.js +++ b/monkey/monkey_island/cc/ui/src/components/pages/RegisterPage.js @@ -57,7 +57,7 @@ class RegisterPageComponent extends React.Component { }; redirectToHome = () => { - window.location.href = '/'; + window.location.href = '/landing-page'; }; constructor(props) {