Skip to content

Commit 07809f0

Browse files
authored
fix(issues): Wrap solutions in error boundary (#81244)
1 parent b7deff8 commit 07809f0

File tree

1 file changed

+2
-2
lines changed
  • static/app/views/issueDetails/streamline/sidebar

1 file changed

+2
-2
lines changed

static/app/views/issueDetails/streamline/sidebar/sidebar.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ export default function StreamlinedSidebar({group, event, project}: Props) {
5555
issueTypeConfig.issueSummary.enabled &&
5656
!organization.hideAiFeatures) ||
5757
issueTypeConfig.resources) && (
58-
<Fragment>
58+
<ErrorBoundary mini>
5959
<SolutionsSection group={group} project={project} event={event} />
6060
<StyledBreak />
61-
</Fragment>
61+
</ErrorBoundary>
6262
)}
6363
{event && (
6464
<ErrorBoundary mini>

0 commit comments

Comments
 (0)