From eac7bef2230d13bb3b7dc082965ad43f6177f570 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Mon, 26 Feb 2024 14:48:53 +0100 Subject: [PATCH] fix(ui): skip with siteid --- .../app/components/Onboarding/components/withOnboarding.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/Onboarding/components/withOnboarding.tsx b/frontend/app/components/Onboarding/components/withOnboarding.tsx index f9325d53a..931609428 100644 --- a/frontend/app/components/Onboarding/components/withOnboarding.tsx +++ b/frontend/app/components/Onboarding/components/withOnboarding.tsx @@ -41,7 +41,7 @@ const withOnboarding =

( const skip = () => { props.setOnboarding(true); - props.history.push(sessions()); + props.history.push(withSiteId(sessions(), siteId)); }; const navTo = (tab: string) => {