Skip to content

Commit

Permalink
fix(issues): Wrap solutions in error boundary (#81244)
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper authored Nov 25, 2024
1 parent b7deff8 commit 07809f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static/app/views/issueDetails/streamline/sidebar/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ export default function StreamlinedSidebar({group, event, project}: Props) {
issueTypeConfig.issueSummary.enabled &&
!organization.hideAiFeatures) ||
issueTypeConfig.resources) && (
<Fragment>
<ErrorBoundary mini>
<SolutionsSection group={group} project={project} event={event} />
<StyledBreak />
</Fragment>
</ErrorBoundary>
)}
{event && (
<ErrorBoundary mini>
Expand Down

0 comments on commit 07809f0

Please sign in to comment.