fix: Onboarding - Take a test drive doesn't dismiss for Expensifail account#89484
Conversation
|
@codex review |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 8f23a7d11a
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| if (!viewTourTaskReport) { | ||
| // Fallback for accounts with no viewTour task — otherwise selfTourViewed never gets set. | ||
| setSelfTourViewed(); |
There was a problem hiding this comment.
Guard fallback until viewTour task data has loaded
!viewTourTaskReport is also true while onboarding task data is still hydrating from Onyx, not just for Expensifail accounts without a VIEW_TOUR task. In that loading window, calling setSelfTourViewed() here can flip hasSeenTour to true before the task report arrives; then this effect exits early on subsequent renders and never runs completeTestDriveTask, leaving the VIEW_TOUR task uncompleted. This is reproducible when opening the demo before NVP_INTRO_SELECTED/report keys are loaded (see useOnboardingTaskInformation, which derives taskReport from async Onyx state).
Useful? React with 👍 / 👎.
There was a problem hiding this comment.
This is reproducible when opening the demo before NVP_INTRO_SELECTED/report keys are loaded
I don't think this scenario can actually occur.
Reviewer Checklist
Screenshots/VideosAndroid: HybridAppScreen.Recording.2026-05-07.at.17.30.58.movAndroid: mWeb ChromeScreen.Recording.2026-05-07.at.17.23.43.moviOS: HybridAppScreen.Recording.2026-05-07.at.17.25.22.moviOS: mWeb SafariScreen.Recording.2026-05-07.at.17.22.35.movMacOS: Chrome / SafariScreen.Recording.2026-05-07.at.17.21.13.mov |
|
🚧 @MariaHCD has triggered a test Expensify/App build. You can view the workflow run here. |
|
🧪🧪 Use the links below to test this adhoc build on Android, iOS, and Web. Happy testing! 🧪🧪
|
|
✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release. |
|
🚀 Deployed to staging by https://github.com/MariaHCD in version: 9.3.69-0 🚀
Bundle Size Analysis (Sentry): |
|
No help site changes required. This PR is a pure bug fix — it adds a |
Explanation of Change
In
TestDriveDemo.tsx, the completionuseEffectearly-returned whenviewTourTaskReportwas missing without ever callingsetSelfTourViewed(). That's the path Expensifail / test-drive-receiver accounts take, becauseprepareOnboardingOnyxDatadeliberately excludes the VIEW_TOUR task for them (it lives on Concierge instead). The result:onboarding.selfTourViewedstayedfalseafter completion, so the "Take a test drive" button inEmptySearchView's Reports-tab empty state — gated byhasSeenTourSelector(!!onboarding.selfTourViewed) — kept showing.This PR adds a
setSelfTourViewed()fallback inside the!viewTourTaskReportbranch, mirroring the same fallbackDiscoverSection.handlePressalready uses (DiscoverSection.tsx:62). The happy path is unchanged: whenviewTourTaskReportexists,completeTestDriveTaskstill runs and setsselfTourViewedinternally.Fixed Issues
$ #78942
PROPOSAL: #78942 (comment)
Tests
Offline tests
Same as tests
QA Steps
// TODO: These must be filled out, or the issue title must include "[No QA]."
Same as tests
PR Author Checklist
### Fixed Issuessection aboveTestssectionOffline stepssectionQA stepssectioncanBeMissingparam foruseOnyxtoggleReportand notonIconClick)src/languages/*files and using the translation methodSTYLE.md) were followedAvatar, I verified the components usingAvatarare working as expected)StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))npm run compress-svg)Avataris modified, I verified thatAvataris working as expected in all cases)Designlabel and/or tagged@Expensify/designso the design team can review the changes.ScrollViewcomponent to make it scrollable when more elements are added to the page.mainbranch was merged into this PR after a review, I tested again and verified the outcome was still expected according to theTeststeps.Screenshots/Videos
Android: Native
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari
Macbook-Chrome.mp4