Skip to content

Commit ec21956

Browse files
authored
fix(billing): Change display name to Logs (#96660)
Closes: https://linear.app/getsentry/issue/BIL-1178/logs-product-should-display-in-the-ui-as-logs-not-log-bytes Changes the display name for the Logs product. Affects the subscription card (shown below) as well as other labels in the application. <img width="1178" height="343" alt="Screenshot 2025-07-29 at 9 53 02 AM" src="https://github.com/user-attachments/assets/557821cd-998a-48f1-be60-c3ca6c13e102" />
1 parent 9d38989 commit ec21956

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

static/gsAdmin/components/addGiftEventsAction.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ describe('Gift', function () {
343343

344344
function getLogBytesInput() {
345345
return screen.getByRole('textbox', {
346-
name: 'How many log bytes in GB?',
346+
name: 'How many logs in GB?',
347347
});
348348
}
349349

static/gsApp/utils/dataCategory.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export function getPlanCategoryName({
6969
const displayNames = plan?.categoryDisplayNames?.[category];
7070
const categoryName =
7171
category === DataCategory.LOG_BYTE
72-
? 'log bytes'
72+
? 'logs'
7373
: category === DataCategory.SPANS && hadCustomDynamicSampling
7474
? 'accepted spans'
7575
: displayNames

static/gsApp/views/subscriptionPage/recurringCredits.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ describe('Recurring Credits', function () {
229229

230230
await screen.findByRole('heading', {name: /recurring credits/i});
231231

232-
expect(screen.getByText('log bytes')).toBeInTheDocument();
232+
expect(screen.getByText('logs')).toBeInTheDocument();
233233
expect(screen.getByTestId('amount')).toHaveTextContent('+2.5 GB/mo');
234234
});
235235

0 commit comments

Comments
 (0)