You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As it is, I cannot access this.props.firebase.ref.child(...) nor this.props.firebase.ref().child(...). If the above line is simply changed to ref, I can access database with this.props.firebase.ref.child(...).
The text was updated successfully, but these errors were encountered:
* `ref` is now a function in compose (Addresses #28)
* test added to confirm that `ref` is exposed correctly
* Peer Dependencies updated to include `react-redux` `^5.0.0` and ` redux` `^3.6.0`
Hi,
Regarding this line: https://github.com/prescottprue/react-redux-firebase/blob/master/src/compose.js#L142
Is there any reason why you set
ref
toFirebase.database().ref
instead of just referring toref
constant that was set above?As it is, I cannot access
this.props.firebase.ref.child(...)
northis.props.firebase.ref().child(...)
. If the above line is simply changed toref
, I can access database withthis.props.firebase.ref.child(...)
.The text was updated successfully, but these errors were encountered: