about summary refs log tree commit diff
path: root/src/view/shell/index.tsx
diff options
context:
space:
mode:
authordan <dan.abramov@gmail.com>2025-01-10 18:06:07 +0000
committerGitHub <noreply@github.com>2025-01-10 18:06:07 +0000
commit6ca97406c1e1f2df6d39694dd1616d9abe081baa (patch)
tree6ecb3f6ae59b9d32fec1e120a02bb6caa656cbe5 /src/view/shell/index.tsx
parenta7da6462865558c7d3766628f4cd8eabd93b68f9 (diff)
downloadvoidsky-6ca97406c1e1f2df6d39694dd1616d9abe081baa.tar.zst
A simpler fix for trending swipe issue (#7424)
Diffstat (limited to 'src/view/shell/index.tsx')
-rw-r--r--src/view/shell/index.tsx5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/view/shell/index.tsx b/src/view/shell/index.tsx
index 80e63c6bc..3fbc9a3f3 100644
--- a/src/view/shell/index.tsx
+++ b/src/view/shell/index.tsx
@@ -34,7 +34,6 @@ import {BottomSheetOutlet} from '../../../modules/bottom-sheet'
 import {updateActiveViewAsync} from '../../../modules/expo-bluesky-swiss-army/src/VisibilityView'
 import {Composer} from './Composer'
 import {DrawerContent} from './Drawer'
-import {TrendingGestureContext} from './TrendingGestureContext'
 
 function ShellInner() {
   const t = useTheme()
@@ -145,9 +144,7 @@ function ShellInner() {
                 dim: 'rgba(10, 13, 16, 0.8)',
               }),
             }}>
-            <TrendingGestureContext.Provider value={trendingScrollGesture}>
-              <TabsNavigator />
-            </TrendingGestureContext.Provider>
+            <TabsNavigator />
           </Drawer>
         </ErrorBoundary>
       </View>