mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 15:36:59 +01:00
Merge pull request #2280 from BlueWallet/fix-ms-creation
FIX: animation on ms creation screen
This commit is contained in:
commit
d90fbc2da3
1 changed files with 5 additions and 1 deletions
|
@ -131,8 +131,12 @@ const WalletsAddMultisigStep2 = () => {
|
|||
},
|
||||
});
|
||||
|
||||
const onCreate = async () => {
|
||||
const onCreate = () => {
|
||||
setIsLoading(true);
|
||||
setTimeout(_onCreate, 100);
|
||||
};
|
||||
|
||||
const _onCreate = async () => {
|
||||
const w = new MultisigHDWallet();
|
||||
w.setM(m);
|
||||
switch (format) {
|
||||
|
|
Loading…
Add table
Reference in a new issue