Skip to content

Commit

Permalink
fix: update chart height for desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
tiendn committed Oct 17, 2022
1 parent 4155b23 commit 15062ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/homepage/Chart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ const OverviewChart = ({}) => {
)
}

return <Line className={styles.chart} height={isMobile ? 190 : 150} options={options} data={data} />
return <Line className={styles.chart} height={isMobile ? 190 : 100} options={options} data={data} />
}

export default OverviewChart

0 comments on commit 15062ad

Please sign in to comment.