Skip to content

Commit

Permalink
fix(issue-details): Prevent event error section from showing up if no…
Browse files Browse the repository at this point in the history
… errors (#76235)

this pr fixes a bug where the event error section was showing up when
there were no event errors
  • Loading branch information
roggenkemper authored Aug 15, 2024
1 parent 987941b commit ec6d1bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/app/components/events/eventProcessingErrors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export function EventProcessingErrors({event, project, isShare}: Props) {
isShare,
});

if (!actionableItems || !proguardErrors) {
if (!actionableItems || actionableItems.errors.length === 0 || !proguardErrors) {
return null;
}

Expand Down

0 comments on commit ec6d1bf

Please sign in to comment.