File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
app/components/Views/confirmations/components Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 55 Text ,
66 TextVariant ,
77} from '@metamask/design-system-react-native' ;
8- import { ScrollView , Pressable , ImageSourcePropType } from 'react-native' ;
8+ import { Pressable , ImageSourcePropType } from 'react-native' ;
99import { useTailwind } from '@metamask/design-system-twrnc-preset' ;
1010
1111import { strings } from '../../../../../../locales/i18n' ;
@@ -19,6 +19,7 @@ import {
1919 useNetworkFilter ,
2020 NETWORK_FILTER_ALL ,
2121} from '../../hooks/send/useNetworkFilter' ;
22+ import { ScrollView } from 'react-native-gesture-handler' ;
2223
2324interface NetworkFilterTabProps {
2425 label : string ;
Original file line number Diff line number Diff line change 88 TextColor ,
99 TextVariant ,
1010} from '@metamask/design-system-react-native' ;
11- import { ScrollView } from 'react-native' ;
1211
1312import { useTheme } from '../../../../../../util/theme' ;
1413import { strings } from '../../../../../../../locales/i18n' ;
@@ -24,6 +23,7 @@ import { NetworkFilter } from '../../network-filter';
2423import { useEVMNfts } from '../../../hooks/send/useNfts' ;
2524import { useAccountTokens } from '../../../hooks/send/useAccountTokens' ;
2625import { useSafeAreaInsets } from 'react-native-safe-area-context' ;
26+ import { ScrollView } from 'react-native-gesture-handler' ;
2727
2828export interface AssetProps {
2929 hideNfts ?: boolean ;
@@ -145,7 +145,11 @@ export const Asset: React.FC<AssetProps> = (props = {}) => {
145145 onExposeFilterControls = { handleExposeFilterControls }
146146 onNetworkFilterChange = { handleNetworkFilterChange }
147147 />
148- < ScrollView contentContainerStyle = { { paddingBottom : bottomOffset } } >
148+ < ScrollView
149+ contentContainerStyle = { {
150+ paddingBottom : bottomOffset ,
151+ } }
152+ >
149153 { hasNoResults && hasActiveFilters ? (
150154 < Box twClassName = "items-center py-8 px-4" >
151155 < Text variant = { TextVariant . BodyMd } twClassName = "text-center mb-4" >
You can’t perform that action at this time.
0 commit comments