fix(user journey): Redirect to correct page

This commit is contained in:
Hristo Nedelkov 2024-03-25 19:55:23 +02:00 committed by Emil Ivanichkov
parent 46705d1899
commit 6a8eb1f648
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ const CreateLocalNode = () => {
const dispatch = useDispatch() const dispatch = useDispatch()
const handleContinue = () => { const handleContinue = () => {
dispatch(setNavigationFlow('createNode')) dispatch(setNavigationFlow('createNode'))
navigate('/device-health-check') navigate('/device-health-check-onboarding')
} }
return ( return (
<PageWrapperShadow <PageWrapperShadow

View File

@ -44,7 +44,7 @@ const PairDevice = () => {
const continueHandler = () => { const continueHandler = () => {
dispatch(setNavigationFlow('pairDevice')) dispatch(setNavigationFlow('pairDevice'))
navigate('/device-health-check') navigate('/device-health-check-onboarding')
} }
const isDisabledButton = () => { const isDisabledButton = () => {