Merge pull request #151 from presenton/fix/general-layout-issues
fix(layout): reduces scatter plot max to 20 from 100
This commit is contained in:
commit
323eb90691
2 changed files with 2 additions and 2 deletions
|
|
@ -21,7 +21,7 @@ const scatterChartDataSchema = z.object({
|
|||
data: z.array(z.object({
|
||||
x: z.number().meta({ description: "X coordinate" }),
|
||||
y: z.number().meta({ description: "Y coordinate" }),
|
||||
})).min(2).max(100)
|
||||
})).min(2).max(20)
|
||||
})
|
||||
|
||||
const chartWithBulletsSlideSchema = z.object({
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ const teamSlideSchema = z.object({
|
|||
companyDescription: z.string().min(10).max(150).default('Ginyard International Co. is a leading provider of innovative digital solutions tailored for businesses. Our mission is to empower organizations to achieve their goals through cutting-edge technology and strategic partnerships.').meta({
|
||||
description: "Company description or team introduction text",
|
||||
}),
|
||||
teamMembers: z.array(teamMemberSchema).min(2).max(3).default([
|
||||
teamMembers: z.array(teamMemberSchema).min(2).max(4).default([
|
||||
{
|
||||
name: 'Juliana Silva',
|
||||
position: 'CEO',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue