From 2b6cff298a92ad9d09a2ead2de354fd514021209 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 27 Aug 2025 20:59:05 -0500 Subject: [PATCH] Use ScrollProvider for old list --- src/view/screens/StorybookLists/index.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/view/screens/StorybookLists/index.tsx b/src/view/screens/StorybookLists/index.tsx index ca67e33742..099cd46b0b 100644 --- a/src/view/screens/StorybookLists/index.tsx +++ b/src/view/screens/StorybookLists/index.tsx @@ -2,6 +2,7 @@ import {useState} from 'react' import {View} from 'react-native' import {runOnJS} from 'react-native-reanimated' +import {ScrollProvider} from '#/lib/ScrollContext' import {List as OldList} from '#/view/com/util/List' import {atoms as a} from '#/alf' import {Button, ButtonText} from '#/components/Button' @@ -78,7 +79,7 @@ export function Inner() { /> ) : ( - + item.key} @@ -93,7 +94,7 @@ export function Inner() { )} style={[a.debug]} /> - + )} )