Skip to content

Commit ec6d1bf

Browse files
authored
fix(issue-details): Prevent event error section from showing up if no errors (#76235)
this pr fixes a bug where the event error section was showing up when there were no event errors
1 parent 987941b commit ec6d1bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/app/components/events/eventProcessingErrors.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export function EventProcessingErrors({event, project, isShare}: Props) {
104104
isShare,
105105
});
106106

107-
if (!actionableItems || !proguardErrors) {
107+
if (!actionableItems || actionableItems.errors.length === 0 || !proguardErrors) {
108108
return null;
109109
}
110110

0 commit comments

Comments
 (0)