Re-add the timer before loading app so db has time to fetch data.
This commit is contained in:
parent
0662649faf
commit
3be2062f5f
@ -29,5 +29,7 @@ Meteor.startup(() => {
|
||||
Meteor.subscribe('activeDeviceCollection');
|
||||
}
|
||||
|
||||
ReactDOM.render(<App />, document.getElementById('root'));
|
||||
Meteor.setTimeout(function() {
|
||||
ReactDOM.render(<App />, document.getElementById('root'));
|
||||
}, 1250);
|
||||
});
|
||||
Loading…
Reference in New Issue
Block a user