i18n - docs translations (#22296)

Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
This commit is contained in:
github-actions[bot]
2026-06-29 14:00:00 +02:00
committed by GitHub
parent db7d8172f7
commit 73b0d55350
15 changed files with 18 additions and 19 deletions
@@ -18,7 +18,7 @@ server
└───integrations
└───metadata
└───workspace
└───utils},{
└───utils
```
## Habilidad
@@ -227,12 +227,12 @@ const EmailField = ({ value, disabled = false }: EmailFieldProps) => (
```tsx
// ❌ Bad, passing in the same value as the default value adds no value
const Form = () => <EmailField value=\"username@email.com\" disabled={false} />;
const Form = () => <EmailField value="username@email.com" disabled={false} />;
```
```tsx
// ✅ Good, assumes the default value
const Form = () => <EmailField value=\"username@email.com\" />;
const Form = () => <EmailField value="username@email.com" />;
```
## Componente como props