Skip to content

Commit d6847b2

Browse files
committed
don't alert on load list errors
1 parent efc9372 commit d6847b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

App/Screens/FollowList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var FollowList = React.createClass({
5151
FollowActions.fetchList(this.getUsername(), function(error) {
5252
// TODO: handle error
5353
if (error) {
54-
alert(error.message);
54+
console.log(error.message);
5555
}
5656
});
5757
}

App/Screens/PostList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var PostList = React.createClass({
5050
PostActions.fetchList(this.getUsername(), function(error) {
5151
// TODO: handle error
5252
if (error) {
53-
alert(error.message);
53+
console.log(error.message);
5454
}
5555
});
5656
}

0 commit comments

Comments
 (0)