Skip to content

Commit b7bbf77

Browse files
committed
Use real transaction name
1 parent 6c9472d commit b7bbf77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/seer/explorer/index_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def get_transactions_for_project(project_id: int) -> list[Transaction]:
8888
seen_names.add(normalized_name)
8989
transactions.append(
9090
Transaction(
91-
name=normalized_name,
91+
name=name, # Use original name, not normalized
9292
project_id=project_id,
9393
)
9494
)

0 commit comments

Comments
 (0)