mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 07:28:07 +01:00
FIX: RN Warning for Multisig setup
This commit is contained in:
parent
64b3e909ec
commit
1f1f49806a
1 changed files with 8 additions and 15 deletions
|
@ -12,7 +12,6 @@ import {
|
|||
Text,
|
||||
TouchableOpacity,
|
||||
View,
|
||||
ScrollView,
|
||||
} from 'react-native';
|
||||
import {
|
||||
BlueButton,
|
||||
|
@ -599,10 +598,7 @@ const WalletsAddMultisigStep2 = () => {
|
|||
);
|
||||
|
||||
return (
|
||||
<ScrollView contentContainerStyle={[styles.root, stylesHook.root]}>
|
||||
<StatusBar barStyle="light-content" />
|
||||
<BlueSpacing20 />
|
||||
<View style={[styles.root, stylesHook.root, styles.mainBlock]}>
|
||||
<View style={[styles.root, stylesHook.root]}>
|
||||
<StatusBar barStyle="light-content" />
|
||||
<FlatList data={data.current} renderItem={_renderKeyItem} keyExtractor={(_item, index) => `${index}`} />
|
||||
|
||||
|
@ -611,18 +607,15 @@ const WalletsAddMultisigStep2 = () => {
|
|||
{renderProvideMnemonicsModal()}
|
||||
|
||||
{renderCosignersXpubModal()}
|
||||
</View>
|
||||
{footer}
|
||||
</ScrollView>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
root: {
|
||||
flex: 1,
|
||||
marginTop: -8,
|
||||
flexDirection: 'column',
|
||||
height: '100%',
|
||||
marginHorizontal: 20,
|
||||
},
|
||||
mainBlock: {
|
||||
height: '100%',
|
||||
|
|
Loading…
Add table
Reference in a new issue