From 82b227e64ae23d233a2232812fa9141627400b84 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Tue, 26 Nov 2024 22:13:35 +0000 Subject: [PATCH] Use regular ScrollView on native The Draggable thing was needed for web-only behavior so we can drop it in the native fork. --- src/view/com/pager/TabBar.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/view/com/pager/TabBar.tsx b/src/view/com/pager/TabBar.tsx index 16138e384c..3f453971c8 100644 --- a/src/view/com/pager/TabBar.tsx +++ b/src/view/com/pager/TabBar.tsx @@ -4,7 +4,6 @@ import {LayoutChangeEvent, ScrollView, StyleSheet, View} from 'react-native' import {usePalette} from '#/lib/hooks/usePalette' import {PressableWithHover} from '../util/PressableWithHover' import {Text} from '../util/text/Text' -import {DraggableScrollView} from './DraggableScrollView' export interface TabBarProps { testID?: string @@ -72,7 +71,7 @@ export function TabBar({ testID={testID} style={[pal.view, styles.outer]} accessibilityRole="tablist"> - ) })} - + )