mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-21 14:34:55 +01:00
DEL: Remove alerts from main list
This commit is contained in:
parent
a46c79ac63
commit
bd2d2b5ed0
1 changed files with 1 additions and 4 deletions
|
@ -1,4 +1,3 @@
|
|||
/* global alert */
|
||||
import React, { Component } from 'react';
|
||||
import {
|
||||
View,
|
||||
|
@ -68,7 +67,7 @@ export default class WalletsList extends Component {
|
|||
console.log('fetch all wallet txs took', (end - start) / 1000, 'sec');
|
||||
} catch (error) {
|
||||
noErr = false;
|
||||
alert(error);
|
||||
console.log(error);
|
||||
}
|
||||
if (noErr) this.redrawScreen();
|
||||
});
|
||||
|
@ -111,7 +110,6 @@ export default class WalletsList extends Component {
|
|||
console.log('fetch tx took', (end - start) / 1000, 'sec');
|
||||
} catch (err) {
|
||||
noErr = false;
|
||||
alert(err);
|
||||
console.warn(err);
|
||||
}
|
||||
if (noErr) await BlueApp.saveToDisk(); // caching
|
||||
|
@ -262,7 +260,6 @@ export default class WalletsList extends Component {
|
|||
}
|
||||
} catch (Err) {
|
||||
noErr = false;
|
||||
alert(Err);
|
||||
console.warn(Err);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue