Skip to content

Commit 3c7aa06

Browse files
authored
Fix: support callout wording in subscription footer (#102091)
Quick fix to change the wording in the support callout in subscriptions Before: <img width="459" height="77" alt="image" src="https://github.com/user-attachments/assets/ec23e22e-c165-4458-880c-6e735ae741c6" /> After: <img width="417" height="89" alt="image" src="https://github.com/user-attachments/assets/438e82ef-3e79-41ef-935c-446ae2cb1143" />
1 parent b2c84e1 commit 3c7aa06

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

static/gsApp/views/subscriptionPage/overview.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import {Text} from 'sentry/components/core/text';
77
import ErrorBoundary from 'sentry/components/errorBoundary';
88
import LoadingError from 'sentry/components/loadingError';
99
import LoadingIndicator from 'sentry/components/loadingIndicator';
10-
import {IconSupport} from 'sentry/icons';
1110
import {t, tct} from 'sentry/locale';
1211
import {DataCategory} from 'sentry/types/core';
1312
import {useApiQuery} from 'sentry/utils/queryClient';
@@ -328,13 +327,14 @@ function Overview({location, subscription, promotionData}: Props) {
328327
border="primary"
329328
>
330329
<Flex align="center" gap="sm">
331-
<IconSupport />
332330
<Text bold>{t('Having trouble?')}</Text>
333331
</Flex>
334332
<Text>
335-
{tct('Reach out to [supportLink], or vent to a real human on [discordLink]', {
333+
{tct('Reach out to our [supportLink], or join us on [discordLink]', {
336334
supportLink: (
337-
<ExternalLink href="https://support.sentry.io">{t('Support')}</ExternalLink>
335+
<ExternalLink href="https://support.sentry.io">
336+
{t('Support team')}
337+
</ExternalLink>
338338
),
339339
discordLink: (
340340
<ExternalLink href="https://discord.com/invite/sentry">

0 commit comments

Comments
 (0)