Skip to content

Commit 3361fb9

Browse files
fix(billing): correct constants (#81073)
Correct strings for indexed span category.
1 parent d9e4aa5 commit 3361fb9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

static/app/constants/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ export const DATA_CATEGORY_INFO = {
351351
[DataCategoryExact.SPAN_INDEXED]: {
352352
name: DataCategoryExact.SPAN_INDEXED,
353353
apiName: 'span_indexed',
354-
plural: 'spans_indexed',
354+
plural: 'spansIndexed',
355355
displayName: 'stored span',
356356
titleName: t('Stored Spans'),
357357
productName: t('Tracing'),

static/app/types/core.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export enum DataCategory {
8080
MONITOR_SEATS = 'monitorSeats',
8181
PROFILE_DURATION = 'profileDuration',
8282
SPANS = 'spans',
83+
SPANS_INDEXED = 'spansIndexed',
8384
}
8485

8586
/**

0 commit comments

Comments
 (0)