Skip to content

Commit

Permalink
Fix mapPropsStream
Browse files Browse the repository at this point in the history
  • Loading branch information
bigslycat committed Jul 24, 2018
1 parent 0a234b2 commit 17643f4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/react-honeycombs/src/mapPropsStream.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ export const mapPropsStream = <P: {}, R: {}>(
constructor(props, context) {
super(props, context);

this.propsObservers = new Set();

this.propsObservable = new Observable(subscriptionObserver => {
this.propsObservers.add(subscriptionObserver);
return () => {
Expand Down

0 comments on commit 17643f4

Please sign in to comment.