File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -78,12 +78,19 @@ const settingsRoutes = (): SentryRouteObject => ({
7878 component : make ( ( ) => import ( '../views/subscriptionPage/billingInformation' ) ) ,
7979 deprecatedRouteProps : true ,
8080 } ,
81+ // 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
8182 {
8283 path : 'usage-log/' ,
8384 name : 'Usage Log' ,
8485 component : make ( ( ) => import ( '../views/subscriptionPage/usageLog' ) ) ,
8586 deprecatedRouteProps : true ,
8687 } ,
88+ {
89+ path : 'activity-logs/' ,
90+ name : 'Activity Logs' ,
91+ component : make ( ( ) => import ( '../views/subscriptionPage/usageLog' ) ) ,
92+ deprecatedRouteProps : true ,
93+ } ,
8794 {
8895 path : 'receipts/:invoiceGuid/' ,
8996 name : 'Receipt Details' ,
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ function LinksCard({organization}: {organization: Organization}) {
3131 < LinkButton
3232 priority = "link"
3333 icon = { < IconTimer /> }
34- to = "/settings/billing/usage-log /"
34+ to = "/settings/billing/activity-logs /"
3535 >
3636 < Text size = "sm" variant = "accent" >
3737 { t ( 'View activity' ) }
@@ -51,7 +51,7 @@ function LinksCard({organization}: {organization: Organization}) {
5151 < LinkButton
5252 priority = "link"
5353 icon = { < IconTimer /> }
54- to = "/settings/billing/usage-log /"
54+ to = "/settings/billing/activity-logs /"
5555 >
5656 < Text size = "sm" variant = "accent" >
5757 { t ( 'View activity' ) }
You can’t perform that action at this time.
0 commit comments