Skip to content

Commit 89e44da

Browse files
authored
fix: remove account description (coder#1427)
Resolves: coder#1419
1 parent e6168ba commit 89e44da

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

site/src/pages/PreferencesPages/AccountPage/AccountPage.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { XServiceContext } from "../../../xServices/StateContext"
77

88
export const Language = {
99
title: "Account",
10-
description: "Update your display name, email, and username.",
1110
unknownError: "Oops, an unknown error occurred.",
1211
}
1312

@@ -25,7 +24,7 @@ export const AccountPage: React.FC = () => {
2524
}
2625

2726
return (
28-
<Section title={Language.title} description={Language.description}>
27+
<Section title={Language.title}>
2928
<AccountForm
3029
error={hasUnknownError ? Language.unknownError : undefined}
3130
formErrors={formErrors}

0 commit comments

Comments
 (0)