refactor(frontend): clean up code by consolidating multi-line JSX into single lines where feasible

- Refactored JSX elements to improve readability by collapsing multi-line props and attributes into single lines if their length permits.
- Improved consistency in component imports by grouping and consolidating them.
- No functional changes, purely restructuring for clarity and maintainability.
This commit is contained in:
2026-01-01 11:46:57 +01:00
parent a7ba0f9bd8
commit a4c91cb8c3
77 changed files with 600 additions and 907 deletions

View File

@@ -53,10 +53,7 @@ const modelParamsSchema = z.object({
* Schema for agent type form fields
*/
export const agentTypeFormSchema = z.object({
name: z
.string()
.min(1, 'Name is required')
.max(255, 'Name must be less than 255 characters'),
name: z.string().min(1, 'Name is required').max(255, 'Name must be less than 255 characters'),
slug: z
.string()