We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent26b04cc commit1249b52Copy full SHA for 1249b52
site/src/components/PreferencesLayout/PreferencesLayout.tsx
@@ -13,11 +13,13 @@ export const Language = {
13
preferencesLabel:"Preferences",
14
}
15
16
+// Security and linked accounts will be implemented in the enterprise release;
17
+// for now leave them out since they have no functionality.
18
constmenuItems=[
19
{label:Language.accountLabel,path:"/preferences/account"},
-{label:Language.securityLabel,path:"/preferences/security"},
20
+//{ label: Language.securityLabel, path: "/preferences/security" },
21
{label:Language.sshKeysLabel,path:"/preferences/ssh-keys"},
-{label:Language.linkedAccountsLabel,path:"/preferences/linked-accounts"},
22
+//{ label: Language.linkedAccountsLabel, path: "/preferences/linked-accounts" },
23
]
24
25
exportconstPreferencesLayout:React.FC=()=>{