fix: missing helper texts
This commit is contained in:
@@ -87,6 +87,11 @@ const UpdateUserPreferences: FC = () => {
|
|||||||
disabled={formik.isSubmitting}
|
disabled={formik.isSubmitting}
|
||||||
status={formik.touched.bio !== undefined && formik.errors.bio !== undefined ? 'danger' : undefined}
|
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>
|
</FormGroup>
|
||||||
{/* TODO: Add Profile Picture and Social Links fields */}
|
{/* TODO: Add Profile Picture and Social Links fields */}
|
||||||
<FormGroup>
|
<FormGroup>
|
||||||
|
|||||||
@@ -8,11 +8,9 @@ const CuentaPage: FC = () => {
|
|||||||
<Container>
|
<Container>
|
||||||
<Typography variant="h1" align="center">Cuenta</Typography>
|
<Typography variant="h1" align="center">Cuenta</Typography>
|
||||||
<Typography variant="body1">
|
<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>
|
</Typography>
|
||||||
<CuentaTabs
|
<CuentaTabs/>
|
||||||
|
|
||||||
/>
|
|
||||||
</Container>
|
</Container>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user