fix: missing helper texts

This commit is contained in:
2024-02-08 15:54:31 -06:00
parent e105edbbee
commit ddeed0a6ef
2 changed files with 7 additions and 4 deletions
+5
View File
@@ -87,6 +87,11 @@ const UpdateUserPreferences: FC = () => {
disabled={formik.isSubmitting}
status={formik.touched.bio !== undefined && formik.errors.bio !== undefined ? 'danger' : undefined}
/>
{formik.touched.bio !== undefined && formik.errors.bio !== undefined && (
<Typography variant="caption" color="danger">
{formik.errors.bio}
</Typography>
)}
</FormGroup>
{/* TODO: Add Profile Picture and Social Links fields */}
<FormGroup>
+2 -4
View File
@@ -8,11 +8,9 @@ const CuentaPage: FC = () => {
<Container>
<Typography variant="h1" align="center">Cuenta</Typography>
<Typography variant="body1">
Aquí puedes actualizar el nombre de usuario de tu cuenta.
Desde aquí puedes administrar las preferencias y ajustes de tu cuenta.
</Typography>
<CuentaTabs
/>
<CuentaTabs/>
</Container>
)
}