diff --git a/static/gsApp/hooks/settingsRoutes.tsx b/static/gsApp/hooks/settingsRoutes.tsx index 7f0560ac97fc1f..76659941eca468 100644 --- a/static/gsApp/hooks/settingsRoutes.tsx +++ b/static/gsApp/hooks/settingsRoutes.tsx @@ -78,12 +78,19 @@ const settingsRoutes = (): SentryRouteObject => ({ component: make(() => import('../views/subscriptionPage/billingInformation')), deprecatedRouteProps: true, }, + // TODO(sub-v3): We're keeping both routes for now, but we should remove the usage-log route once we're confident in keeping the new name { path: 'usage-log/', name: 'Usage Log', component: make(() => import('../views/subscriptionPage/usageLog')), deprecatedRouteProps: true, }, + { + path: 'activity-logs/', + name: 'Activity Logs', + component: make(() => import('../views/subscriptionPage/usageLog')), + deprecatedRouteProps: true, + }, { path: 'receipts/:invoiceGuid/', name: 'Receipt Details', diff --git a/static/gsApp/views/subscriptionPage/headerCards/linksCard.tsx b/static/gsApp/views/subscriptionPage/headerCards/linksCard.tsx index 8b8d325320fb7a..6066fe85268d19 100644 --- a/static/gsApp/views/subscriptionPage/headerCards/linksCard.tsx +++ b/static/gsApp/views/subscriptionPage/headerCards/linksCard.tsx @@ -31,7 +31,7 @@ function LinksCard({organization}: {organization: Organization}) { } - to="/settings/billing/usage-log/" + to="/settings/billing/activity-logs/" > {t('View activity')} @@ -51,7 +51,7 @@ function LinksCard({organization}: {organization: Organization}) { } - to="/settings/billing/usage-log/" + to="/settings/billing/activity-logs/" > {t('View activity')}