Skip to content

Commit 0c7847e

Browse files
chore(billing): Update launch feature in showNewSeer (#105470)
step 6 of https://www.notion.so/sentry/Seat-Based-Seer-Launch-FF-2cd8b10e4b5d80b1973fdd4950059e80?source=copy_link Use new launch ff `seer-user-billing-launch` for determining whether to show new Seer
1 parent 417a017 commit 0c7847e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

static/app/utils/seer/showNewSeer.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ export default function showNewSeer(organization: Organization) {
2121
}
2222

2323
// This is the launch flag
24-
if (organization.features.includes('seer-user-billing')) {
24+
if (
25+
organization.features.includes('seer-user-billing') &&
26+
organization.features.includes('seer-user-billing-launch')
27+
) {
2528
return true;
2629
}
2730

0 commit comments

Comments
 (0)