Browse Source

chore(billing): Fix manage legacy transactions quota link (#75477)

The docs page for managing the legacy transactions quota will be revived
in https://github.com/getsentry/sentry-docs/pull/10953.
Alberto Leal 7 months ago
parent
commit
8df5cd13b1
1 changed files with 3 additions and 1 deletions
  1. 3 1
      static/app/views/settings/account/notifications/utils.tsx

+ 3 - 1
static/app/views/settings/account/notifications/utils.tsx

@@ -40,8 +40,10 @@ export function getDocsLinkForEventType(
 ) {
   switch (event) {
     case 'transaction':
-      return 'https://sentry-docs-git-move-quota-to-billing.sentry.dev/pricing/quotas/manage-transaction-quota/';
+      // For pre-AM3 plans prior to June 11th, 2024
+      return 'https://docs.sentry.io/pricing/quotas/legacy-manage-transaction-quota/';
     case 'span':
+      // For post-AM3 plans after June 11th, 2024
       return 'https://docs.sentry.io/pricing/quotas/manage-transaction-quota/';
     case 'attachment':
       return 'https://docs.sentry.io/product/accounts/quotas/manage-attachments-quota/#2-rate-limiting';