File tree 3 files changed +3
-6
lines changed
3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -401,9 +401,9 @@ function App() {
401
401
< Route path = { settingsPathNotifications } exact component = { Notifications } />
402
402
< Route path = { settingsPathBilling } exact component = { Billing } />
403
403
< Route path = { settingsPathPlans } exact component = { Plans } />
404
- < Route path = { settingsPathPersonalAccessTokens } exact component = { PersonalAccessTokens } />
405
404
< Route path = { settingsPathVariables } exact component = { EnvironmentVariables } />
406
405
< Route path = { settingsPathSSHKeys } exact component = { SSHKeys } />
406
+ < Route path = { settingsPathPersonalAccessTokens } exact component = { PersonalAccessTokens } />
407
407
< Route path = { settingsPathPreferences } exact component = { Preferences } />
408
408
< Route path = { projectsPathInstallGitHubApp } exact component = { InstallGitHubApp } />
409
409
< Route path = "/from-referrer" exact component = { FromReferrer } />
Original file line number Diff line number Diff line change @@ -20,10 +20,7 @@ function PersonalAccessTokens() {
20
20
21
21
return (
22
22
< div >
23
- < PageWithSettingsSubMenu
24
- title = "Preferences"
25
- subtitle = "Manage your Personal Access Tokens to access the Gitpod API."
26
- >
23
+ < PageWithSettingsSubMenu title = "Access Tokens" subtitle = "Manage your personal access tokens." >
27
24
< ListAccessTokensView />
28
25
</ PageWithSettingsSubMenu >
29
26
</ div >
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ export default function getSettingsMenu(params: {
36
36
...( params . enablePersonalAccessTokens
37
37
? [
38
38
{
39
- title : "Personal Access Tokens" ,
39
+ title : "Access Tokens" ,
40
40
link : [ settingsPathPersonalAccessTokens ] ,
41
41
} ,
42
42
]
You can’t perform that action at this time.
0 commit comments