From c3b9239cd4eb1089a9e2cba115a1d02c699cf0d6 Mon Sep 17 00:00:00 2001 From: ShubhamPalriwala Date: Sat, 26 Aug 2023 17:06:54 +0530 Subject: [PATCH] fix: disable onboarding wizard in default settings until ready --- dashboard/components/layout/Layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/components/layout/Layout.tsx b/dashboard/components/layout/Layout.tsx index ce902247d..834f6180c 100644 --- a/dashboard/components/layout/Layout.tsx +++ b/dashboard/components/layout/Layout.tsx @@ -37,7 +37,7 @@ function Layout({ children }: LayoutProps) { } }, [telemetry]); - const betaFlagOnboardingWizard = true; // To test the onboarding wizard feature, set this beta-flag to true + const betaFlagOnboardingWizard = false; // To test the onboarding wizard feature, set this beta-flag to true const isOnboarding = betaFlagOnboardingWizard && router.pathname.startsWith('/onboarding');