Remove second CTA on group members page
What does this MR do and why?
What
Remove the second CTA on group members page
Why
There was a duplicate CTA on the group members page
References
Screenshots or screen recordings
| Before | After |
|---|---|
![]() |
![]() |
How to set up and validate locally
- Simulate SaaS on GDK (See https://docs.gitlab.com/ee/development/ee_features.html#simulate-a-saas-instance)
- Setup a trial for a namespace (instructions from !171341 (merged))
bin/rails c
namespace = Group.last
namespace.owner_id = User.first.id # if needed / you need to be the owner of the namespace
gitlab_subscription = namespace.gitlab_subscription # find or create a new one if needed
gitlab_subscription.update(hosted_plan: Plan.find_by(name: 'ultimate'), trial: true, trial_ends_on: Date.today + 15)
- Navigate to any group that the signed in user owns
MR acceptance checklist
Evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.
Related to #525152 (closed)
Edited by Jay Montal

