remove console.log calls
This commit is contained in:
parent
deb863a94c
commit
2cc4177bbe
1 changed files with 3 additions and 9 deletions
|
@ -113,15 +113,9 @@ class SplashScreen extends React.PureComponent {
|
|||
|
||||
getUserSettings = () => {
|
||||
const { populateSharedUserState } = this.props;
|
||||
Lbryio.call('user_settings', 'get')
|
||||
.then(settings => {
|
||||
console.log('***populate with settings***');
|
||||
console.log(settings);
|
||||
populateSharedUserState(settings);
|
||||
})
|
||||
.catch(err => {
|
||||
console.log(err);
|
||||
});
|
||||
Lbryio.call('user_settings', 'get').then(settings => {
|
||||
populateSharedUserState(settings);
|
||||
});
|
||||
};
|
||||
|
||||
finishSplashScreen = () => {
|
||||
|
|
Loading…
Reference in a new issue