Skip to content

Commit

Permalink
Remove member access feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
ttalty committed Nov 6, 2024
1 parent 350a856 commit f6eaa16
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,14 @@ export class ReportsHomeComponent implements OnInit {
...reports[ReportType.Inactive2fa],
variant: reportRequiresUpgrade,
},
];

if (this.isMemberAccessReportEnabled) {
reportsArray.push({
{
...reports[ReportType.MemberAccessReport],
variant:
productType == ProductTierType.Enterprise
? ReportVariant.Enabled
: ReportVariant.RequiresEnterprise,
});
}
},
];

return reportsArray;
}
Expand Down

0 comments on commit f6eaa16

Please sign in to comment.