Skip to content

Commit 1249b52

Browse files
committed
fix: remove unimplemented account links
These will be implemented in the enterprise release. Opted to just comment them out per previous discussion. Closes #1232.
1 parent 26b04cc commit 1249b52

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

site/src/components/PreferencesLayout/PreferencesLayout.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@ export const Language = {
1313
preferencesLabel: "Preferences",
1414
}
1515

16+
// Security and linked accounts will be implemented in the enterprise release;
17+
// for now leave them out since they have no functionality.
1618
const menuItems = [
1719
{ label: Language.accountLabel, path: "/preferences/account" },
18-
{ label: Language.securityLabel, path: "/preferences/security" },
20+
// { label: Language.securityLabel, path: "/preferences/security" },
1921
{ label: Language.sshKeysLabel, path: "/preferences/ssh-keys" },
20-
{ label: Language.linkedAccountsLabel, path: "/preferences/linked-accounts" },
22+
// { label: Language.linkedAccountsLabel, path: "/preferences/linked-accounts" },
2123
]
2224

2325
export const PreferencesLayout: React.FC = () => {

0 commit comments

Comments
 (0)