From e9c07fd5a865a53b6d3a80d6ac06706a78d675b0 Mon Sep 17 00:00:00 2001 From: isabellaenriquez Date: Wed, 20 Nov 2024 12:29:29 -0800 Subject: [PATCH 1/2] fix(billing): correct constants --- static/app/constants/index.tsx | 2 +- static/app/types/core.tsx | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/static/app/constants/index.tsx b/static/app/constants/index.tsx index a250be49723e53..0d6200f2773da9 100644 --- a/static/app/constants/index.tsx +++ b/static/app/constants/index.tsx @@ -351,7 +351,7 @@ export const DATA_CATEGORY_INFO = { [DataCategoryExact.SPAN_INDEXED]: { name: DataCategoryExact.SPAN_INDEXED, apiName: 'span_indexed', - plural: 'spans_indexed', + plural: 'spansIndexed', displayName: 'stored span', titleName: t('Stored Spans'), productName: t('Tracing'), diff --git a/static/app/types/core.tsx b/static/app/types/core.tsx index b4e512e54067fb..88c3eb94f3d6fe 100644 --- a/static/app/types/core.tsx +++ b/static/app/types/core.tsx @@ -80,6 +80,7 @@ export enum DataCategory { MONITOR_SEATS = 'monitorSeats', PROFILE_DURATION = 'profileDuration', SPANS = 'spans', + SPAN_INDEXED = 'spanIndexed', } /** From e76c6318edfdfa7421797d45f9ef538a2a2931ca Mon Sep 17 00:00:00 2001 From: isabellaenriquez Date: Thu, 21 Nov 2024 09:45:01 -0800 Subject: [PATCH 2/2] make consistent --- static/app/types/core.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/app/types/core.tsx b/static/app/types/core.tsx index 88c3eb94f3d6fe..8748a53c322ac5 100644 --- a/static/app/types/core.tsx +++ b/static/app/types/core.tsx @@ -80,7 +80,7 @@ export enum DataCategory { MONITOR_SEATS = 'monitorSeats', PROFILE_DURATION = 'profileDuration', SPANS = 'spans', - SPAN_INDEXED = 'spanIndexed', + SPANS_INDEXED = 'spansIndexed', } /**