From 1a5edf642ffe3091df659e97cf04d1c4c86ef852 Mon Sep 17 00:00:00 2001 From: Eli Zibin Date: Mon, 6 May 2024 13:59:20 -0700 Subject: [PATCH] fix typo --- example/app/scrollview-charts.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/app/scrollview-charts.tsx b/example/app/scrollview-charts.tsx index f4157d39..84655e50 100644 --- a/example/app/scrollview-charts.tsx +++ b/example/app/scrollview-charts.tsx @@ -13,7 +13,7 @@ const DATA = Array.from({ length: 31 }, (_, i) => ({ highTmp: 40 + 30 * Math.random(), })); -const BarChart = () => { +const LineChart = () => { const font = useFont(inter, 12); const { state, isActive } = useChartPressState({ x: 0, y: { highTmp: 0 } }); return ( @@ -45,7 +45,7 @@ export default function GettingStartedScreen() { {Array.from({ length: 5 }, (_, i) => ( - + Just a page with a number of charts nested within a ScrollView