···11import React from 'react'
22-import {Pressable, View} from 'react-native'
33-import {type ScrollView} from 'react-native-gesture-handler'
22+import {Pressable, type ScrollView, View} from 'react-native'
43import {type AppBskyLabelerDefs, BSKY_LABELER_DID} from '@atproto/api'
54import {msg, Trans} from '@lingui/macro'
65import {useLingui} from '@lingui/react'
+3
src/view/shell/BlockDrawerGesture.web.tsx
···11+export function BlockDrawerGesture({children}: {children: React.ReactNode}) {
22+ return children
33+}
+1
webpack.config.js
···2727 'unicode-segmenter/grapheme': require
2828 .resolve('unicode-segmenter/grapheme')
2929 .replace(/\.cjs$/, '.js'),
3030+ 'react-native-gesture-handler': false, // RNGH should not be used on web, so let's cause a build error if it sneaks in
3031 })
3132 config.module.rules = [
3233 ...(config.module.rules || []),