fix: remove onyx connect ONYXKEYS.NVP_PRIVATE_OWNER_BILLING_GRACE_PERIOD_END (part 1)#81382
Conversation
Codecov Report✅ Changes either increased or maintained existing code coverage, great job!
|
|
@shubham1206agra 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] |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: c4c161c661
ℹ️ 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".
| function hasOverdueGracePeriod(): boolean { | ||
| return !!ownerBillingGraceEndPeriod; | ||
| function hasOverdueGracePeriod(gracePeriodEnd?: OnyxEntry<number>): boolean { | ||
| const value = gracePeriodEnd ?? ownerBillingGraceEndPeriod; |
There was a problem hiding this comment.
Handle null grace period as an explicit cleared value
The new fallback gracePeriodEnd ?? ownerBillingGraceEndPeriod treats null the same as “not provided”, so callers that pass null (Onyx’s cleared-state value) still read the module-level cache. In hasOverdueGracePeriod/getSubscriptionStatus, this can keep showing overdue subscription errors after the grace-period key is cleared if the cached global value is still populated. Because this refactor is intended to support pure, argument-driven checks, fallback should only happen when the argument is truly absent (undefined), not when it is explicitly null.
Useful? React with 👍 / 👎.
Reviewer Checklist
Screenshots/Videos
|
|
🚧 @danieldoglas 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/danieldoglas in version: 9.3.17-0 🚀
|
|
Hi @truph01. How can we set |
|
🚀 Deployed to production by https://github.com/lakchote in version: 9.3.17-9 🚀
|
You can test with the account that has free trial ends |

Explanation of Change
This PR is part of an effort to remove
Onyx.connect()usage for the keyONYXKEYS.NVP_PRIVATE_OWNER_BILLING_GRACE_PERIOD_ENDinsrc/libs/SubscriptionUtils.ts.Since this refactor affects multiple areas, it is split into two PRs. This PR is the first step and focuses on the following refactor:
(It means
getBillingStatusfunction usesgetOverdueGracePeriodDate,getOverdueGracePeriodDateuseownerBillingGraceEndPeriod,ownerBillingGraceEndPeriodcomes from Onyx.connect()).Fixed Issues
$ #66449
PROPOSAL:
Tests
Test 1:
Offline 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
Screen.Recording.2026-02-09.at.17.59.22.mov
Android: mWeb Chrome
Screen.Recording.2026-02-09.at.17.55.20.mov
iOS: Native
Screen.Recording.2026-02-09.at.17.58.24.mov
iOS: mWeb Safari
Screen.Recording.2026-02-09.at.17.54.49.mov
MacOS: Chrome / Safari
Test 1
Screen.Recording.2026-02-09.at.17.42.37.mov