diff --git a/packages/twenty-docs/l/ar/developers/contribute/capabilities/backend-development/folder-architecture-server.mdx b/packages/twenty-docs/l/ar/developers/contribute/capabilities/backend-development/folder-architecture-server.mdx
index 6c69712560..cd2a5f36d3 100644
--- a/packages/twenty-docs/l/ar/developers/contribute/capabilities/backend-development/folder-architecture-server.mdx
+++ b/packages/twenty-docs/l/ar/developers/contribute/capabilities/backend-development/folder-architecture-server.mdx
@@ -18,7 +18,7 @@ server
└───integrations
└───metadata
└───workspace
- └───utils},{
+ └───utils
```
## قدرات
diff --git a/packages/twenty-docs/l/ar/developers/contribute/capabilities/backend-development/server-commands.mdx b/packages/twenty-docs/l/ar/developers/contribute/capabilities/backend-development/server-commands.mdx
index 63b98cdd9d..0e2cd0a062 100644
--- a/packages/twenty-docs/l/ar/developers/contribute/capabilities/backend-development/server-commands.mdx
+++ b/packages/twenty-docs/l/ar/developers/contribute/capabilities/backend-development/server-commands.mdx
@@ -23,7 +23,7 @@ npx nx run twenty-server:start
### Lint
```
-npx nx run twenty-server:lint # pass --fix to fix lint errors},{
+npx nx run twenty-server:lint # pass --fix to fix lint errors
```
### تجربة
diff --git a/packages/twenty-docs/l/ar/developers/contribute/style-guide.mdx b/packages/twenty-docs/l/ar/developers/contribute/style-guide.mdx
index 0ca07f942b..c55f72ccaf 100644
--- a/packages/twenty-docs/l/ar/developers/contribute/style-guide.mdx
+++ b/packages/twenty-docs/l/ar/developers/contribute/style-guide.mdx
@@ -1,6 +1,6 @@
---
title: دليل الأسلوب
-icon: فرشاة طلاء
+icon: paintbrush
description: اتفاقيات الشيفرة وأفضل الممارسات للمساهمة في Twenty.
---
diff --git a/packages/twenty-docs/l/ar/twenty-ui/display/app-tooltip.mdx b/packages/twenty-docs/l/ar/twenty-ui/display/app-tooltip.mdx
index 9935b0ddde..17b7f329bf 100644
--- a/packages/twenty-docs/l/ar/twenty-ui/display/app-tooltip.mdx
+++ b/packages/twenty-docs/l/ar/twenty-ui/display/app-tooltip.mdx
@@ -1,6 +1,6 @@
---
title: تلميح التطبيق
-icon: رسالة
+icon: message
---
diff --git a/packages/twenty-docs/l/ar/twenty-ui/display/icons.mdx b/packages/twenty-docs/l/ar/twenty-ui/display/icons.mdx
index 17b5a6b6ab..10dd83678f 100644
--- a/packages/twenty-docs/l/ar/twenty-ui/display/icons.mdx
+++ b/packages/twenty-docs/l/ar/twenty-ui/display/icons.mdx
@@ -1,6 +1,6 @@
---
title: الأيقونات
-icon: الأيقونات
+icon: icons
---
diff --git a/packages/twenty-docs/l/ar/twenty-ui/input/toggle.mdx b/packages/twenty-docs/l/ar/twenty-ui/input/toggle.mdx
index 9ce1cfe978..6f0a1784fa 100644
--- a/packages/twenty-docs/l/ar/twenty-ui/input/toggle.mdx
+++ b/packages/twenty-docs/l/ar/twenty-ui/input/toggle.mdx
@@ -18,7 +18,7 @@ export const MyComponent = () => {
toggleSize = "medium"
/>
);
-};},{
+};
```
diff --git a/packages/twenty-docs/l/es/developers/contribute/capabilities/backend-development/folder-architecture-server.mdx b/packages/twenty-docs/l/es/developers/contribute/capabilities/backend-development/folder-architecture-server.mdx
index 48e84b0d43..c1a93b4470 100644
--- a/packages/twenty-docs/l/es/developers/contribute/capabilities/backend-development/folder-architecture-server.mdx
+++ b/packages/twenty-docs/l/es/developers/contribute/capabilities/backend-development/folder-architecture-server.mdx
@@ -18,7 +18,7 @@ server
└───integrations
└───metadata
└───workspace
- └───utils},{
+ └───utils
```
## Habilidad
diff --git a/packages/twenty-docs/l/es/developers/contribute/capabilities/frontend-development/best-practices-front.mdx b/packages/twenty-docs/l/es/developers/contribute/capabilities/frontend-development/best-practices-front.mdx
index 5893ec7aa4..e416216c72 100644
--- a/packages/twenty-docs/l/es/developers/contribute/capabilities/frontend-development/best-practices-front.mdx
+++ b/packages/twenty-docs/l/es/developers/contribute/capabilities/frontend-development/best-practices-front.mdx
@@ -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 = () => ;
+const Form = () => ;
```
```tsx
// ✅ Good, assumes the default value
-const Form = () => ;
+const Form = () => ;
```
## Componente como props
diff --git a/packages/twenty-docs/l/es/twenty-ui/display/app-tooltip.mdx b/packages/twenty-docs/l/es/twenty-ui/display/app-tooltip.mdx
index 8aafa173b7..85403c7d40 100644
--- a/packages/twenty-docs/l/es/twenty-ui/display/app-tooltip.mdx
+++ b/packages/twenty-docs/l/es/twenty-ui/display/app-tooltip.mdx
@@ -1,6 +1,6 @@
---
title: Consejo de la aplicación
-icon: mensaje
+icon: message
---
diff --git a/packages/twenty-docs/l/es/twenty-ui/display/icons.mdx b/packages/twenty-docs/l/es/twenty-ui/display/icons.mdx
index 6788ea6561..7565b58a2b 100644
--- a/packages/twenty-docs/l/es/twenty-ui/display/icons.mdx
+++ b/packages/twenty-docs/l/es/twenty-ui/display/icons.mdx
@@ -1,6 +1,6 @@
---
title: Iconos
-icon: iconos
+icon: icons
---
diff --git a/packages/twenty-docs/l/es/twenty-ui/input/toggle.mdx b/packages/twenty-docs/l/es/twenty-ui/input/toggle.mdx
index 7279a36437..4fbe195e54 100644
--- a/packages/twenty-docs/l/es/twenty-ui/input/toggle.mdx
+++ b/packages/twenty-docs/l/es/twenty-ui/input/toggle.mdx
@@ -18,7 +18,7 @@ export const MyComponent = () => {
toggleSize = "medium"
/>
);
-};},{
+};
```
diff --git a/packages/twenty-docs/l/es/twenty-ui/navigation/navigation-bar.mdx b/packages/twenty-docs/l/es/twenty-ui/navigation/navigation-bar.mdx
index 23a2136a9e..ed731c4157 100644
--- a/packages/twenty-docs/l/es/twenty-ui/navigation/navigation-bar.mdx
+++ b/packages/twenty-docs/l/es/twenty-ui/navigation/navigation-bar.mdx
@@ -8,7 +8,7 @@ Renderiza una barra de navegación que contiene varios componentes `NavigationBa
-````jsx
+```jsx
import { IconHome, IconUser, IconSettings } from '@tabler/icons-react';
import { NavigationBar } from "@/ui/navigation/navigation-bar/components/NavigationBar";
@@ -33,8 +33,8 @@ export const MyComponent = () => {
];
return ;
-};"}]}``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }``` }} }}}
-````
+};
+```
diff --git a/packages/twenty-docs/l/ko/twenty-ui/input/text.mdx b/packages/twenty-docs/l/ko/twenty-ui/input/text.mdx
index 1ec3cdace3..075344c052 100644
--- a/packages/twenty-docs/l/ko/twenty-ui/input/text.mdx
+++ b/packages/twenty-docs/l/ko/twenty-ui/input/text.mdx
@@ -132,8 +132,8 @@ export const MyComponent = () => {