We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa28688 commit a0cad46Copy full SHA for a0cad46
1 file changed
src/libs/OnboardingUtils.ts
@@ -18,7 +18,7 @@ function shouldOnboardingRedirectToOldDot(companySize: OnboardingCompanySize | u
18
}
19
20
// Check if the integration is supported in NewDot
21
- const isSupportedIntegration = (!!userReportedIntegration && supportedIntegrationsInNewDot.includes(userReportedIntegration)) || userReportedIntegration === null;
+ const isSupportedIntegration = (!!userReportedIntegration && supportedIntegrationsInNewDot.includes(userReportedIntegration)) || userReportedIntegration === undefined;
22
23
// Don't redirect if integration is supported and company size is MICRO or SMALL
24
const isMicroOrSmallCompany = companySize === CONST.ONBOARDING_COMPANY_SIZE.MICRO || companySize === CONST.ONBOARDING_COMPANY_SIZE.SMALL;
0 commit comments