From 2915e1e3258d54b98734c69675f176b74f09e23a Mon Sep 17 00:00:00 2001 From: Priscila Oliveira Date: Wed, 4 Dec 2024 11:41:41 +0100 Subject: [PATCH] fix(quick-start): Do not display waiting event in 'adding second platform' task --- static/app/components/onboardingWizard/taskConfig.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/app/components/onboardingWizard/taskConfig.tsx b/static/app/components/onboardingWizard/taskConfig.tsx index 8d746f7a6654bf..74e69ba9329289 100644 --- a/static/app/components/onboardingWizard/taskConfig.tsx +++ b/static/app/components/onboardingWizard/taskConfig.tsx @@ -313,7 +313,7 @@ export function getOnboardingTasks({ display: true, pendingTitle: t('Awaiting an error for this project.'), SupplementComponent: ({task}: OnboardingSupplementComponentProps) => { - if (!hasQuickStartUpdatesFeature(organization)) { + if (hasQuickStartUpdatesFeature(organization)) { return null; } if (!projects?.length || task.requisiteTasks.length > 0 || taskIsDone(task)) {