Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
]);
Expand Down
Loading