fix: remove account description (#1427)

Resolves: #1419
This commit is contained in:
G r e y
2022-05-13 11:53:14 -04:00
committed by GitHub
parent e6168ba238
commit 89e44da899
@@ -7,7 +7,6 @@ import { XServiceContext } from "../../../xServices/StateContext"
export const Language = {
title: "Account",
description: "Update your display name, email, and username.",
unknownError: "Oops, an unknown error occurred.",
}
@@ -25,7 +24,7 @@ export const AccountPage: React.FC = () => {
}
return (
<Section title={Language.title} description={Language.description}>
<Section title={Language.title}>
<AccountForm
error={hasUnknownError ? Language.unknownError : undefined}
formErrors={formErrors}