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:
Saurav Niraula 2025-07-28 15:34:41 +05:45 committed by GitHub
commit 323eb90691
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -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({

View file

@ -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',