Skip to content

Commit

Permalink
fix(autofix): use new org feature flag in ui (#76584)
Browse files Browse the repository at this point in the history
Use the new org feature flag for autofix in the UI
  • Loading branch information
jennmueng authored Aug 27, 2024
1 parent d1d3a32 commit e1767e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export function ResourcesAndPossibleSolutions({event, project, group}: Props) {
const isSampleError = useIsSampleEvent();
// NOTE: Autofix is for INTERNAL testing only for now.
const displayAiAutofix =
project.features.includes('ai-autofix') &&
organization.features.includes('autofix') &&
organization.features.includes('issue-details-autofix-ui') &&
!shouldShowCustomErrorResourceConfig(group, project) &&
config.autofix &&
Expand Down

0 comments on commit e1767e4

Please sign in to comment.