From f913893af6c6cb471b1459cdcb274d8466465cd9 Mon Sep 17 00:00:00 2001 From: Jason Hummel Date: Sun, 25 Sep 2016 12:19:05 -0600 Subject: [PATCH] Remove unneeded $scope injection. --- examples/async/containers/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/async/containers/app.js b/examples/async/containers/app.js index 7915bc3..2aed0ce 100644 --- a/examples/async/containers/app.js +++ b/examples/async/containers/app.js @@ -10,7 +10,7 @@ export default function app() { class AppController { - constructor($ngRedux, $scope, AsyncActions) { + constructor($ngRedux, AsyncActions) { const unsubscribe = $ngRedux.connect(this.mapStateToThis, AsyncActions)((selectedState, actions) => { this.componentWillReceiveStateAndActions(selectedState, actions); Object.assign(this, selectedState, actions);