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.
2 parents 8f2b33d + a0cad46 commit 26b0ef4Copy full SHA for 26b0ef4
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