Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f917e58

Browse files
committed
FIX: avoid overriding removeClippedSubviews on iOS
1 parent 055e843 commit f917e58

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

screen/wallets/ImportWalletDiscovery.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ const ImportWalletDiscovery: React.FC = () => {
241241
renderItem={renderItem}
242242
automaticallyAdjustContentInsets={Platform.OS === 'ios'}
243243
contentInsetAdjustmentBehavior={Platform.OS === 'ios' ? 'always' : 'never'}
244-
removeClippedSubviews={Platform.OS !== 'android'}
244+
removeClippedSubviews={Platform.OS === 'android' ? false : undefined}
245245
/>
246246
<View style={[styles.center, stylesHook.center]}>
247247
{bip39 && (

0 commit comments

Comments
 (0)