Skip to content

Commit bb46075

Browse files
fix(quick-start): Do not display waiting event in 'adding second platform' task (#81653)
1 parent 9f964a7 commit bb46075

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/app/components/onboardingWizard/taskConfig.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ export function getOnboardingTasks({
313313
display: true,
314314
pendingTitle: t('Awaiting an error for this project.'),
315315
SupplementComponent: ({task}: OnboardingSupplementComponentProps) => {
316-
if (!hasQuickStartUpdatesFeature(organization)) {
316+
if (hasQuickStartUpdatesFeature(organization)) {
317317
return null;
318318
}
319319
if (!projects?.length || task.requisiteTasks.length > 0 || taskIsDone(task)) {

0 commit comments

Comments
 (0)