Problem: It’s easy to forget to remove feature flags later
Problem: It’s easy to forget to remove feature flags later. And sometimes it’s hard to remove a flag later because there are many spots to update.
Solution: Open 2 PRs:
1. PR to add the flag
2. PR to remove the flag (branched off the PR to add the flag). Open this as a draft.
Benefits:
✅ It’s easy to remove the flag later - We already have the draft PR ready.
✅ If the PR to remove the flag is complex, that’s a warning sign - We should streamline our flag implementation so it’s optimized for safe, simple deletion.