inProgress-team / inProgress-team/react-native-meteor

this._meteorDataManager is undefined

Open
#165 2 comments 0 reactions 0 assignees View on GitHub
Dominant language
JavaScript
Stars
688
Forks
200
PR merge metrics
No merged PRs in 30d

Description

Hi,

I just started using this package and I found that when pushing a route there an error thrown

screen shot 2016-11-24 at 3 27 09 pm

The componentWillUpdate function in mixin.js throws the error because
````
this._meteorDataManager
````
is undefined.

If I add this to the mixin.js file it works
````
if(this._meteorDataManager){
newData = this._meteorDataManager.calculateData();
}
````

````
if(this._meteorDataManager){
this._meteorDataManager.updateData(newData);
}
````

Is there something that maybe im doing wrong or is Navigator not supported?

Thanks in advance for any help.
---
react-native-cli: 1.2.0
react-native: 0.38.0
react-native-meteor: 1.0.2

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.