remove console.log calls

This commit is contained in:
Akinwale Ariwodola 2019-09-23 16:46:36 +01:00
parent deb863a94c
commit 2cc4177bbe

View file

@ -113,15 +113,9 @@ class SplashScreen extends React.PureComponent {
getUserSettings = () => { getUserSettings = () => {
const { populateSharedUserState } = this.props; const { populateSharedUserState } = this.props;
Lbryio.call('user_settings', 'get') Lbryio.call('user_settings', 'get').then(settings => {
.then(settings => { populateSharedUserState(settings);
console.log('***populate with settings***'); });
console.log(settings);
populateSharedUserState(settings);
})
.catch(err => {
console.log(err);
});
}; };
finishSplashScreen = () => { finishSplashScreen = () => {