Skip to content

Commit

Permalink
DEL: Remove alerts from main list
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosrdz authored and Overtorment committed Jan 22, 2020
1 parent a46c79a commit bd2d2b5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions screen/wallets/list.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* global alert */
import React, { Component } from 'react';
import {
View,
Expand Down Expand Up @@ -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();
});
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -262,7 +260,6 @@ export default class WalletsList extends Component {
}
} catch (Err) {
noErr = false;
alert(Err);
console.warn(Err);
}

Expand Down

0 comments on commit bd2d2b5

Please sign in to comment.