From 1d7099e81f3dc02b92531cb026c06930c653b71b Mon Sep 17 00:00:00 2001 From: Abdullah Khan Date: Tue, 14 Apr 2026 23:39:45 +0600 Subject: [PATCH 1/2] feat(source-map-config-issues): Updating title and subtitle --- src/sentry/processing_errors/grouptype.py | 4 ++-- tests/sentry/processing_errors/test_grouptype.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sentry/processing_errors/grouptype.py b/src/sentry/processing_errors/grouptype.py index d08265b4988ab4..edf822bc1a6f61 100644 --- a/src/sentry/processing_errors/grouptype.py +++ b/src/sentry/processing_errors/grouptype.py @@ -243,8 +243,8 @@ def _try_state_transition(self, new_priority: DetectorPriorityLevel) -> int: class SourcemapDetectorHandler(ProcessingErrorDetectorHandler): error_types = JS_SOURCEMAP_ERROR_TYPES fingerprint_key = "sourcemap" - issue_title = "Broken source maps detected" - issue_subtitle = "Source maps are not configured correctly for this project" + issue_title = "Source maps are misconfigured" + issue_subtitle = "Minified stack traces detected, making errors harder to debug" @dataclass(frozen=True) diff --git a/tests/sentry/processing_errors/test_grouptype.py b/tests/sentry/processing_errors/test_grouptype.py index 8a9c0dd475d7f3..88bbfc68b09562 100644 --- a/tests/sentry/processing_errors/test_grouptype.py +++ b/tests/sentry/processing_errors/test_grouptype.py @@ -95,7 +95,7 @@ def test_failure_creates_occurrence(self) -> None: assert result is not None assert result.priority == DetectorPriorityLevel.HIGH assert isinstance(result.result, IssueOccurrence) - assert result.result.issue_title == "Broken source maps detected" + assert result.result.issue_title == "Source maps are misconfigured" assert result.result.evidence_data["error_types"] == ["js_invalid_source", "js_no_source"] assert result.result.evidence_data["sample_event_id"] == "test-event-123" assert result.event_data is not None From dfb5f001a29672c93de511fc5dff9e573fc6150f Mon Sep 17 00:00:00 2001 From: Abdullah Khan Date: Tue, 14 Apr 2026 23:45:55 +0600 Subject: [PATCH 2/2] feat(source-map-config-issues): Updating title and subtitle --- src/sentry/processing_errors/grouptype.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sentry/processing_errors/grouptype.py b/src/sentry/processing_errors/grouptype.py index edf822bc1a6f61..77a30066a3476a 100644 --- a/src/sentry/processing_errors/grouptype.py +++ b/src/sentry/processing_errors/grouptype.py @@ -244,7 +244,7 @@ class SourcemapDetectorHandler(ProcessingErrorDetectorHandler): error_types = JS_SOURCEMAP_ERROR_TYPES fingerprint_key = "sourcemap" issue_title = "Source maps are misconfigured" - issue_subtitle = "Minified stack traces detected, making errors harder to debug" + issue_subtitle = "Minified stack traces detected, making errors harder to debug in Sentry" @dataclass(frozen=True)