Skip to content

Commit

Permalink
Merge pull request #100 from dustyholmes-wf/listen-to-store
Browse files Browse the repository at this point in the history
WP-4923 Stop using the deprecated stream
  • Loading branch information
Rosie the Robot authored Aug 11, 2017
2 parents 6cc44cc + 61cb328 commit 554e8c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/component_common.dart
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ abstract class FluxComponentCommon<ActionsT, StoresT> extends react.Component
value: (_) => (_) => redraw())
..addAll(getStoreHandlers());
handlers.forEach((store, handler) {
listenToStream(store.stream, handler);
listenToStream(store, handler);
});
}

Expand Down

0 comments on commit 554e8c4

Please sign in to comment.