diff --git a/src/pages/OnboardingInterestedFeatures/BaseOnboardingInterestedFeatures.tsx b/src/pages/OnboardingInterestedFeatures/BaseOnboardingInterestedFeatures.tsx index ba54440f2173..16a81d11f902 100644 --- a/src/pages/OnboardingInterestedFeatures/BaseOnboardingInterestedFeatures.tsx +++ b/src/pages/OnboardingInterestedFeatures/BaseOnboardingInterestedFeatures.tsx @@ -35,7 +35,7 @@ function BaseOnboardingInterestedFeatures({shouldUseNativeStyles}: BaseOnboardin const styles = useThemeStyles(); const {translate} = useLocalize(); const {onboardingMessages} = useOnboardingMessages(); - const illustrations = useMemoizedLazyIllustrations(['FolderOpen', 'Accounting', 'CompanyCard', 'Workflows', 'InvoiceBlue', 'Rules', 'Car', 'Tag', 'PerDiem', 'HandCard']); + const illustrations = useMemoizedLazyIllustrations(['FolderOpen', 'Accounting', 'CompanyCard', 'Workflows', 'Rules', 'Car', 'Tag', 'PerDiem', 'HandCard', 'Luggage']); // We need to use isSmallScreenWidth, see navigateAfterOnboarding function comment // eslint-disable-next-line rulesdir/prefer-shouldUseNarrowLayout-instead-of-isSmallScreenWidth @@ -83,9 +83,9 @@ function BaseOnboardingInterestedFeatures({shouldUseNativeStyles}: BaseOnboardin enabledByDefault: true, }, { - id: CONST.POLICY.MORE_FEATURES.ARE_INVOICES_ENABLED, - title: translate('workspace.moreFeatures.invoices.title'), - icon: illustrations.InvoiceBlue, + id: CONST.POLICY.MORE_FEATURES.IS_TRAVEL_ENABLED, + title: translate('workspace.moreFeatures.travel.title'), + icon: illustrations.Luggage, }, { id: CONST.POLICY.MORE_FEATURES.ARE_RULES_ENABLED, @@ -120,12 +120,12 @@ function BaseOnboardingInterestedFeatures({shouldUseNativeStyles}: BaseOnboardin illustrations.Accounting, illustrations.CompanyCard, illustrations.Workflows, - illustrations.InvoiceBlue, illustrations.Rules, illustrations.Car, illustrations.HandCard, illustrations.Tag, illustrations.PerDiem, + illustrations.Luggage, translate, userReportedIntegration, ]);