Skip to content

Commit 781a306

Browse files
greyscaledkylecarbs
authored andcommitted
fix: remove account description (#1427)
Resolves: #1419
1 parent 695ef05 commit 781a306

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

+1-2
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)