Skip to content

Commit 8abda48

Browse files
committed
Remove unused fetchingFeed property.
It was only being set, but not read anymore.
1 parent 49d077a commit 8abda48

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

app/controllers/dashboard.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export default Controller.extend({
1212
init() {
1313
this._super(...arguments);
1414

15-
this.fetchingFeed = true;
1615
this.loadingMore = false;
1716
this.hasMore = false;
1817
this.myCrates = A();

app/routes/dashboard.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ export default Route.extend(AuthenticatedRoute, {
1010
setupController(controller) {
1111
this._super(...arguments);
1212

13-
controller.set('fetchingFeed', true);
1413
controller.set('myCrates', this.get('data.myCrates'));
1514
controller.set('myFollowing', this.get('data.myFollowing'));
1615
controller.set('myStats', this.get('data.myStats'));

app/routes/team.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export default Route.extend({
1414
setupController(controller) {
1515
this._super(...arguments);
1616

17-
controller.set('fetchingFeed', true);
1817
controller.set('crates', this.get('data.crates'));
1918
},
2019

app/routes/user.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ export default Route.extend({
3434
setupController(controller) {
3535
this._super(...arguments);
3636

37-
controller.set('fetchingFeed', true);
3837
controller.set('crates', this.get('data.crates'));
3938
},
4039
});

0 commit comments

Comments
 (0)