Skip to content

Commit

Permalink
feat: call method
Browse files Browse the repository at this point in the history
  • Loading branch information
barttom committed Apr 5, 2024
1 parent 53e0ca3 commit c34e8a2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/pages/OnboardingPurpose/BaseOnboardingPurpose.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,14 @@ function BaseOnboardingPurpose({shouldUseNativeStyles, shouldEnableMaxHeight, on
return;
}

Report.completeEngagementModal(CONST.ONBOARDING_CONCIERGE[selectedPurpose], selectedPurpose);
// Report.completeEngagementModal(CONST.ONBOARDING_CONCIERGE[selectedPurpose], selectedPurpose);
Report.completeOnboarding({
data: CONST.ONBOARDING_MESSAGES[selectedPurpose],
engagementChoice: selectedPurpose,
targetEmail: CONST.EMAIL.CONCIERGE,
firstName: 'Test',
lastName: 'Testovsky',
});

Navigation.dismissModal();
// Only navigate to concierge chat when central pane is visible
Expand Down

0 comments on commit c34e8a2

Please sign in to comment.