turn off things

This commit is contained in:
Jeremy Kauffman 2017-04-13 16:50:24 -04:00
parent 62db745c38
commit 3b29be467b
2 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@ let init = function() {
function onDaemonReady() {
window.sessionStorage.setItem('loaded', 'y'); //once we've made it here once per session, we don't need to show splash again
ReactDOM.render(<div><AuthOverlay /><App /><SnackBar /></div>, canvas)
ReactDOM.render(<div><App /><SnackBar /></div>, canvas)
}
if (window.sessionStorage.getItem('loaded') == 'y') {

View file

@ -19,7 +19,7 @@ var PublishPage = React.createClass({
return;
}
else {
rewards.claimReward(rewards.TYPE_FIRST_PUBLISH)
// rewards.claimReward(rewards.TYPE_FIRST_PUBLISH)
}
});
},
@ -27,7 +27,7 @@ var PublishPage = React.createClass({
// Calls API to update displayed list of channels. If a channel name is provided, will select
// that channel at the same time (used immediately after creating a channel)
lbry.channel_list_mine().then((channels) => {
rewards.claimReward(rewards.TYPE_FIRST_CHANNEL)
// rewards.claimReward(rewards.TYPE_FIRST_CHANNEL)
this.setState({
channels: channels,
... channel ? {channel} : {}