Re-add the timer before loading app so db has time to fetch data.

This commit is contained in:
Andrés Uribe Stengel 2020-07-16 13:59:12 +02:00
parent 0662649faf
commit 3be2062f5f

View File

@ -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);
});