Skip to content

Fix infinite onboarding navigation loop crash on iOS#88014

Merged
mountiny merged 3 commits intomainfrom
fix-onboarding-nav-loop-APP-7FR
Apr 16, 2026
Merged

Fix infinite onboarding navigation loop crash on iOS#88014
mountiny merged 3 commits intomainfrom
fix-onboarding-nav-loop-APP-7FR

Conversation

@mountiny
Copy link
Copy Markdown
Contributor

@mountiny mountiny commented Apr 15, 2026

Explanation of Change

Root cause: The OnboardingGuard unconditionally returns REDIRECT when shouldSkipOnboarding is false, even when the user is already on the OnboardingModalNavigator. Each REDIRECT produces a CommonActions.reset() that changes the navigation state, which triggers onStateChange → Onyx writes → re-renders → re-evaluation of the guard → another REDIRECT → another reset — an infinite loop that crashes with "Maximum update depth exceeded."

Fix: Add an idempotency check before the REDIRECT path — if the OnboardingModalNavigator is already present in state.routes, return ALLOW instead of issuing a redundant redirect. This guarantees the guard reaches a stable state: the first evaluation redirects to onboarding, and all subsequent evaluations pass through without repeating the reset.

The fix is minimal (8 lines including comment) and localized to OnboardingGuard.evaluate(). It does not change behavior for users who are not yet on onboarding — they still get redirected as before.

Evidence from Sentry: The crash breadcrumbs show rapid, repeated navigation to OnboardingModalNavigator, consistent with this loop. VL logs confirm [OnboardingGuard] Redirecting to onboarding route firing repeatedly with all boolean conditions empty (serialized false/undefined).

Fixed Issues

$ #88018

Tests

  1. Log in as a new user who hasn't completed onboarding
  2. Verify the onboarding flow loads correctly (redirect happens once)
  3. Navigate through onboarding steps
  4. Verify no "Maximum update depth exceeded" error appears in console
  5. Complete onboarding and verify you land on the HOME screen

Confirmed by supportalling to user account that I can reproduce the issue for in production narrow view and I cannot reproduce on this build
image

  • Verify that no errors appear in the JS console

Offline tests

N/A — the navigation guard logic is purely client-side and does not depend on network state.

QA Steps

  1. Create a new account on staging
  2. Verify onboarding loads without crash
  3. Complete onboarding flow
  4. Verify the app navigates to HOME after completion
  5. Verify no crashes appear in Sentry for this flow
  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I used JaimeGPT to get English > Spanish translation. I then posted it in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.ts or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))
  • If new assets were added or existing ones were modified, I verified that:
    • The assets are optimized and compressed (for SVG files, run npm run compress-svg)
    • The assets load correctly across all supported platforms.
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • I added unit tests for any new feature or bug fix in this PR to help automatically prevent regressions in this user flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

Screenshots/Videos

Android: Native
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari

@github-actions
Copy link
Copy Markdown
Contributor

🚧 @mountiny has triggered a test Expensify/App build. You can view the workflow run here.

@github-actions

This comment has been minimized.

@Krishna2323
Copy link
Copy Markdown
Contributor

  • Vit Horacek (mountiny) authored and merged the OnboardingGuard in PR Create navigation guards + implement Onboarding Guard #79898 / Create Navigation guards with OnboardingGuard & TestDriveModalGuard #81689 (Feb 2026). The guard was designed to redirect users to onboarding but never had an idempotency check — it never checked if the user was already on the onboarding screen before redirecting. For most users this is fine because one of the shouldSkipOnboarding conditions is true.

  • nkdengineer noticed the loop on March 10 (f5a4ecf0c1d) and added a fix: if the action is NAVIGATE/PUSH/REPLACE targeting onboarding, skip the redirect. But the next day (March 11, 45a31bc9c59) they scaled it back — only REPLACE bypasses, not NAVIGATE/PUSH. This left the door open for RESET actions (which are what actually trigger the loop) to still cause the crash.

So it's the combination: the original guard lacking the idempotency check + the partial fix not covering RESET actions. The crash only affects a narrow population (HybridApp users who completed HybridApp onboarding but not NewDot onboarding), which is why it took a month to surface.

@mountiny Looking at the Sentry logs and the fix, this investigation seems accurate.

@mountiny mountiny marked this pull request as ready for review April 16, 2026 00:02
@mountiny mountiny requested review from a team as code owners April 16, 2026 00:02
@mountiny
Copy link
Copy Markdown
Contributor Author

Confirmed in the adhoc this is fixed for the customer on narrow web
image

@melvin-bot melvin-bot Bot requested review from abdulrahuman5196 and heyjennahay and removed request for a team April 16, 2026 00:02
@melvin-bot
Copy link
Copy Markdown

melvin-bot Bot commented Apr 16, 2026

@abdulrahuman5196 Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@melvin-bot melvin-bot Bot removed the request for review from a team April 16, 2026 00:02
@mountiny mountiny requested review from Krishna2323 and removed request for abdulrahuman5196 April 16, 2026 00:03
Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: bb1b80a6e1

ℹ️ 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".

Comment on lines +204 to +206
const isAlreadyOnOnboarding = state.routes.some((route) => route.name === NAVIGATORS.ONBOARDING_MODAL_NAVIGATOR);
if (isAlreadyOnOnboarding) {
return {type: 'ALLOW'};
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Gate ALLOW to focused onboarding route

This check assumes that having OnboardingModalNavigator anywhere in state.routes means the user is currently on onboarding, but stacks can contain that route while another screen is focused (the adapted onboarding reset state includes both HOME and onboarding). In that state, any non-RESET action (for example a NAVIGATE to HOME/deep link) bypasses onboarding because shouldPreventReset() only handles RESET and this branch returns ALLOW, so users who still require onboarding can escape the flow. The guard should only allow when onboarding is actually focused (or when the action explicitly targets onboarding).

Useful? React with 👍 / 👎.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mountiny this seems like a valid concern. I think we should check if an onboarding screen is actually focused instead:

const currentFocusedRoute = findFocusedRoute(state);
if (isOnboardingFlowName(currentFocusedRoute?.name)) {
    return {type: 'ALLOW'};
}

Both imports are already in the file. This way the guard only skips the redirect when the user is genuinely viewing onboarding, not just when it's somewhere in the stack.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can also add a check for the action target, not just the current state. There's a window where a RESET action targets onboarding (e.g. from useNavigationResetOnLayoutChange) but the state hasn't committed yet — so the focused route check alone could miss it.

const currentFocusedRoute = findFocusedRoute(state);
const isResettingToOnboarding = action.type === CONST.NAVIGATION_ACTIONS.RESET && !!action.payload && isOnboardingFlowName(findFocusedRoute(action.payload as NavigationState)?.name);
if (isOnboardingFlowName(currentFocusedRoute?.name) || isResettingToOnboarding) {
    return {type: 'ALLOW'};
}

This pattern is used in MigratedUserWelcomeModalGuard.

/**
* MigratedUserWelcomeModalGuard handles the migrated user welcome modal flow.
* This modal appears for users who have been added to nudge migration and haven't dismissed it yet.
*/
const MigratedUserWelcomeModalGuard: NavigationGuard = {
name: 'MigratedUserWelcomeModalGuard',
evaluate: (state: NavigationState, action: NavigationAction, context): GuardResult => {
if (context.isLoading) {
return {type: 'ALLOW'};
}
if (shouldBlockWhileModalActive(state, action)) {
return {type: 'BLOCK', reason: '[MigratedUserWelcomeModalGuard] Blocking navigation while migrated user modal is active'};
}
if (isNavigatingToMigratedUserModal(state, action) || hasRedirectedToMigratedUserModal) {
return {type: 'ALLOW'};
}
if (hasBeenAddedToNudgeMigration && !isProductTrainingElementDismissed('migratedUserWelcomeModal', dismissedProductTraining)) {
Log.info('[MigratedUserWelcomeModalGuard] Redirecting to migrated user welcome modal');
hasRedirectedToMigratedUserModal = true;
return {
type: 'REDIRECT',
route: ROUTES.MIGRATED_USER_WELCOME_MODAL.getRoute(),
};
}
return {type: 'ALLOW'};
},
};

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MelvinBot investigate the concern raised by chatgpt-codex-connector, and also check whether both of my comments above are valid and regression-free.

Copy link
Copy Markdown
Contributor

@MelvinBot MelvinBot Apr 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The codex-connector concern is valid, and both of Krishna2323's suggestions are correct improvements.

The concern (codex-connector):
The current check (state.routes.some) returns ALLOW whenever OnboardingModalNavigator is anywhere in state.routes. But React Navigation's state.index determines which route is focused — the onboarding navigator can be in the stack while another screen (e.g. HOME) is actually focused. In that case, the guard would incorrectly ALLOW, letting the user bypass onboarding.

Comment 1 (focused-route check) — valid, no regression:
findFocusedRoute drills into nested navigators and returns the deepest focused screen. isOnboardingFlowName checks against SCREENS.ONBOARDING values (the actual screen names like OnboardingPurpose, etc). This correctly identifies when the user is viewing onboarding, not just when the navigator exists somewhere in the stack. The infinite loop is still broken (when onboarding IS focused → ALLOW), but the escape-hatch bug is fixed (when HOME is focused → falls through to REDIRECT).

Comment 2 (RESET-in-flight check) — valid, no regression:
This covers the timing window where a RESET action targets onboarding but the state hasn't committed yet — so the focused-route check alone would miss it. This is exactly the pattern used in MigratedUserWelcomeModalGuard.isNavigatingToMigratedUserModal() (lines 66-72), which checks both isOnModal and isResettingToModal. Following the established codebase pattern here is the right call.

Both changes together make the guard strictly more precise without regressing the infinite-loop fix.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the detailed analysis. A few points:

Re comment 1 (findFocusedRoute + isOnboardingFlowName): The current check state.routes[state.index]?.name already verifies the focused route — it just does it at the navigator level. OnboardingModalNavigator only appears at state.index when onboarding is focused, so the result is identical. Using findFocusedRoute would be a stylistic consistency with shouldPreventReset, but not a correctness difference.

Re comment 2 (RESET-in-flight): This doesn't apply here. The guard's REDIRECT is converted to a RESET and processed by the base StackRouter (line 108 of RootStackRouter.ts), not the custom router — so guards are not re-entered during redirect processing. The next time the guard runs, the state already has OnboardingModalNavigator focused. The MigratedUserWelcomeModalGuard needs this pattern because of its hasRedirectedToMigratedUserModal flag; our guard is purely state-driven and doesn't have that timing window.

@Krishna2323
Copy link
Copy Markdown
Contributor

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • I verified the steps cover any possible failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
  • I checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified that the composer does not automatically focus or open the keyboard on mobile unless explicitly intended. This includes checking that returning the app from the background does not unexpectedly open the keyboard.
  • I verified tests pass on all platforms & I tested again on:
    • Android: HybridApp
    • Android: mWeb Chrome
    • iOS: HybridApp
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified there are no new alerts related to the canBeMissing param for useOnyx
  • I verified proper code patterns were followed (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick).
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I verified that this PR follows the guidelines as stated in the Review Guidelines
  • I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.ts or at the top of the file that uses the constant) are defined as such
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG)
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • For any bug fix or new feature in this PR, I verified that sufficient unit tests are included to prevent regressions in this flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: HybridApp
android_native.mp4
Android: mWeb Chrome
android_mWeb.mp4
iOS: HybridApp
ios_native.mp4
iOS: mWeb Safari
ios_safari.mp4
MacOS: Chrome / Safari
web_chrome.mp4

@mountiny
Copy link
Copy Markdown
Contributor Author

Gate ALLOW to focused onboarding route

Good catch — tightened the check from .some() to state.routes[state.index]?.name so it only ALLOWs when OnboardingModalNavigator is the currently focused route, not merely present in the stack. Added a test for the unfocused edge case (ce716e6).

@codecov
Copy link
Copy Markdown

codecov Bot commented Apr 16, 2026

Codecov Report

✅ Changes either increased or maintained existing code coverage, great job!

Files with missing lines Coverage Δ
src/libs/Navigation/guards/OnboardingGuard.ts 100.00% <100.00%> (ø)
... and 14 files with indirect coverage changes

@Krishna2323
Copy link
Copy Markdown
Contributor

Apart from the failing checks, this LGTM.

The OnboardingGuard would unconditionally REDIRECT to the onboarding
route whenever shouldSkipOnboarding was false, even when the user was
already on the OnboardingModalNavigator. Each REDIRECT produced a
CommonActions.reset that changed the navigation state, which triggered
downstream effects dispatching further actions, re-entering the guard,
and looping until React hit maximum update depth.

Add a check for OnboardingModalNavigator already being present in the
navigation state routes before issuing a REDIRECT. This makes the guard
idempotent: once the user is on onboarding, subsequent evaluations
return ALLOW instead of producing redundant resets.

Made-with: Cursor
Check state.routes[state.index] instead of .some() so the guard only
ALLOWs when OnboardingModalNavigator is actually focused, not merely
present in the stack. Adds a test for the unfocused edge case.

Made-with: Cursor
@mountiny mountiny force-pushed the fix-onboarding-nav-loop-APP-7FR branch from 797d876 to 6a4298b Compare April 16, 2026 01:22
Copy link
Copy Markdown
Contributor

@Krishna2323 Krishna2323 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@melvin-bot melvin-bot Bot requested a review from srikarparsi April 16, 2026 01:33
@melvin-bot
Copy link
Copy Markdown

melvin-bot Bot commented Apr 16, 2026

@srikarparsi Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]


// If the OnboardingModalNavigator is the currently focused route, the user is already
// on the onboarding flow. Redirecting again would produce a redundant state reset that
// triggers further actions, creating an infinite navigation loop (APP-7FR).
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NAB - What is APP-7FR? Not sure it's relevant to add if it's not explained anywhere.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is the issue id in Sentry
image

I agree it does not have to be there, but this is causing crashes for users in production so I would still go ahead and merge now

@mountiny mountiny merged commit 7c618f2 into main Apr 16, 2026
38 checks passed
@mountiny mountiny deleted the fix-onboarding-nav-loop-APP-7FR branch April 16, 2026 03:07
@github-actions
Copy link
Copy Markdown
Contributor

🚧 @mountiny has triggered a test Expensify/App build. You can view the workflow run here.

@OSBotify
Copy link
Copy Markdown
Contributor

✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release.

@OSBotify
Copy link
Copy Markdown
Contributor

🚀 Deployed to staging by https://github.com/mountiny in version: 9.3.60-0 🚀

platform result
🕸 web 🕸 success ✅
🤖 android 🤖 success ✅
🍎 iOS 🍎 success ✅

Bundle Size Analysis (Sentry):

@MelvinBot
Copy link
Copy Markdown
Contributor

No help site changes are required for this PR. The fix is a purely internal navigation guard change (idempotency check in OnboardingGuard.ts) that prevents an infinite loop crash. It doesn't alter any user-facing behavior, feature names, or documented workflows.

@OSBotify
Copy link
Copy Markdown
Contributor

🚀 Deployed to production by https://github.com/mountiny in version: 9.3.60-22 🚀

platform result
🕸 web 🕸 success ✅
🤖 android 🤖 success ✅
🍎 iOS 🍎 success ✅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants