Conversation
Contributor
Greptile SummaryRemoves the "Manage Existing Subscription" button from the Changes:
The implementation is clean and complete. All unused code has been properly removed, which aligns with the codebase's preference for removing dead code rather than commenting it out. Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant AccessRestrictedPage
participant StripeCheckout
Note over User,StripeCheckout: After This PR
User->>AccessRestrictedPage: Sees lapsed subscription page
AccessRestrictedPage->>User: Shows "Resubscribe" button only
User->>AccessRestrictedPage: Clicks "Resubscribe"
AccessRestrictedPage->>StripeCheckout: Creates new subscription session ($25)
StripeCheckout->>User: Redirects to Stripe checkout
|
When a subscription lapses, users now only see the "Resubscribe" option which creates a new subscription at current pricing. This removes the "Manage Existing Subscription" button that allowed users to potentially renew at grandfathered rates through the Stripe customer portal.
1449096 to
bbd8714
Compare
Weves
approved these changes
Jan 20, 2026
jessicasingh7
pushed a commit
that referenced
this pull request
Jan 21, 2026
nmgarza5
added a commit
that referenced
this pull request
Jan 27, 2026
nmgarza5
added a commit
that referenced
this pull request
Jan 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Remove the "Manage Existing Subscription" button from the AccessRestrictedPage when a multi-tenant user's subscription lapses.
Previously, users with lapsed subscriptions saw two confusing options:
Now users only see "Resubscribe", which standardizes the renewal flow to always use current pricing. If a user pays their bill on time as expected, they will still use their grandfathered price.
How Has This Been Tested?
Additional Options