mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 06:52:41 +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 React, { Component } from 'react';
|
||||||
import {
|
import {
|
||||||
View,
|
View,
|
||||||
|
@ -68,7 +67,7 @@ export default class WalletsList extends Component {
|
||||||
console.log('fetch all wallet txs took', (end - start) / 1000, 'sec');
|
console.log('fetch all wallet txs took', (end - start) / 1000, 'sec');
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
noErr = false;
|
noErr = false;
|
||||||
alert(error);
|
console.log(error);
|
||||||
}
|
}
|
||||||
if (noErr) this.redrawScreen();
|
if (noErr) this.redrawScreen();
|
||||||
});
|
});
|
||||||
|
@ -111,7 +110,6 @@ export default class WalletsList extends Component {
|
||||||
console.log('fetch tx took', (end - start) / 1000, 'sec');
|
console.log('fetch tx took', (end - start) / 1000, 'sec');
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
noErr = false;
|
noErr = false;
|
||||||
alert(err);
|
|
||||||
console.warn(err);
|
console.warn(err);
|
||||||
}
|
}
|
||||||
if (noErr) await BlueApp.saveToDisk(); // caching
|
if (noErr) await BlueApp.saveToDisk(); // caching
|
||||||
|
@ -262,7 +260,6 @@ export default class WalletsList extends Component {
|
||||||
}
|
}
|
||||||
} catch (Err) {
|
} catch (Err) {
|
||||||
noErr = false;
|
noErr = false;
|
||||||
alert(Err);
|
|
||||||
console.warn(Err);
|
console.warn(Err);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue