We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2019f4 commit 1a49becCopy full SHA for 1a49bec
static/app/views/issueDetails/groupEventDetails/groupEventDetailsContent.tsx
@@ -143,8 +143,9 @@ function DefaultGroupEventDetailsContent({
143
?.filter((x): x is EntryException => x.type === EntryType.EXCEPTION)
144
.flatMap(x => x.data.values ?? [])
145
.some(({value}) => {
146
- const lowerText = value.toLowerCase();
+ const lowerText = value?.toLowerCase();
147
return (
148
+ lowerText &&
149
(lowerText.includes('api key') || lowerText.includes('429')) &&
150
(lowerText.includes('openai') ||
151
lowerText.includes('anthropic') ||
0 commit comments