From b68ba2d6b48873627db6b70809bd936b59ab76a5 Mon Sep 17 00:00:00 2001 From: Raquel Smith Date: Thu, 26 Oct 2023 10:49:00 -0700 Subject: [PATCH] feat(onboarding): remove the skip ("None of these") button (#18196) remove the skip ("None of these") button --- frontend/src/scenes/products/Products.tsx | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/frontend/src/scenes/products/Products.tsx b/frontend/src/scenes/products/Products.tsx index afdbb1abffabe..9fac87df32751 100644 --- a/frontend/src/scenes/products/Products.tsx +++ b/frontend/src/scenes/products/Products.tsx @@ -104,7 +104,6 @@ export function Products(): JSX.Element { const { featureFlags } = useValues(featureFlagLogic) const { billing } = useValues(billingLogic) const { currentTeam } = useValues(teamLogic) - const { updateCurrentTeam } = useActions(teamLogic) const isFirstProduct = Object.keys(currentTeam?.has_completed_onboarding_for || {}).length === 0 const products = billing?.products || [] @@ -132,23 +131,6 @@ export function Products(): JSX.Element { ))} -
- { - updateCurrentTeam({ - has_completed_onboarding_for: { - ...currentTeam?.has_completed_onboarding_for, - skipped_onboarding: true, - }, - }) - router.actions.replace(urls.default()) - }} - size="small" - > - None of these - -
) : (