mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-26 08:55:56 +01:00
Merge pull request #2588 from BlueWallet/2583
FIX: MS loading creation #2583
This commit is contained in:
commit
52f1bdfe6b
1 changed files with 3 additions and 6 deletions
|
@ -27,7 +27,6 @@ import {
|
|||
BlueButton,
|
||||
BlueButtonLink,
|
||||
BlueFormMultiInput,
|
||||
BlueLoading,
|
||||
BlueSpacing10,
|
||||
BlueSpacing20,
|
||||
BlueSpacing40,
|
||||
|
@ -675,11 +674,9 @@ const WalletsAddMultisigStep2 = () => {
|
|||
);
|
||||
};
|
||||
|
||||
const footer = isLoading ? (
|
||||
<BlueLoading />
|
||||
) : (
|
||||
const footer = (
|
||||
<View style={styles.buttonBottom}>
|
||||
<BlueButton title={loc.multisig.create} onPress={onCreate} disabled={cosigners.length !== n} />
|
||||
{isLoading ? <ActivityIndicator /> : <BlueButton title={loc.multisig.create} onPress={onCreate} disabled={cosigners.length !== n} />}
|
||||
</View>
|
||||
);
|
||||
|
||||
|
@ -718,7 +715,7 @@ const styles = StyleSheet.create({
|
|||
buttonBottom: {
|
||||
marginHorizontal: 20,
|
||||
flex: 0.12,
|
||||
marginBottom: 36,
|
||||
marginBottom: 40,
|
||||
justifyContent: 'flex-end',
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue