fix: bugs

Manually set the sdk path to grab a fixed build from http://build.lbry.io/daemon/build-11443_commit-eae4ed7_branch-master/ - please revert on next commit.
This commit is contained in:
Thomas Zarebczan 2019-07-17 20:04:17 -04:00 committed by Sean Yesmunt
parent f35ef119ac
commit b735daf4e1
3 changed files with 1 additions and 4 deletions

View file

@ -38,7 +38,7 @@ function ChannelContent(props: Props) {
{hasContent && <ClaimList header={false} uris={claimsInChannel.map(claim => claim.permanent_url)} />} {hasContent && <ClaimList header={false} uris={claimsInChannel.map(claim => claim.permanent_url)} />}
<Paginate <Paginate
onPageChange={page => console.log('fetch') || fetchClaims(uri, page)} onPageChange={page => fetchClaims(uri, page)}
totalPages={totalPages} totalPages={totalPages}
loading={fetching && !hasContent} loading={fetching && !hasContent}
/> />

View file

@ -52,8 +52,6 @@ export default class SplashScreen extends React.PureComponent<Props, State> {
} }
componentDidMount() { componentDidMount() {
this.props.onReadyToLaunch();
const { checkDaemonVersion } = this.props; const { checkDaemonVersion } = this.props;
this.adjustErrorTimeout(); this.adjustErrorTimeout();
Lbry.connect() Lbry.connect()

View file

@ -60,7 +60,6 @@ function ChannelPage(props: Props) {
return ( return (
<Page> <Page>
{window.location.href}
<div className="card"> <div className="card">
<header className="channel-cover"> <header className="channel-cover">
{!editing && cover && <img className="channel-cover__custom" src={cover} />} {!editing && cover && <img className="channel-cover__custom" src={cover} />}