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:
parent
f35ef119ac
commit
b735daf4e1
3 changed files with 1 additions and 4 deletions
|
@ -38,7 +38,7 @@ function ChannelContent(props: Props) {
|
|||
{hasContent && <ClaimList header={false} uris={claimsInChannel.map(claim => claim.permanent_url)} />}
|
||||
|
||||
<Paginate
|
||||
onPageChange={page => console.log('fetch') || fetchClaims(uri, page)}
|
||||
onPageChange={page => fetchClaims(uri, page)}
|
||||
totalPages={totalPages}
|
||||
loading={fetching && !hasContent}
|
||||
/>
|
||||
|
|
|
@ -52,8 +52,6 @@ export default class SplashScreen extends React.PureComponent<Props, State> {
|
|||
}
|
||||
|
||||
componentDidMount() {
|
||||
this.props.onReadyToLaunch();
|
||||
|
||||
const { checkDaemonVersion } = this.props;
|
||||
this.adjustErrorTimeout();
|
||||
Lbry.connect()
|
||||
|
|
|
@ -60,7 +60,6 @@ function ChannelPage(props: Props) {
|
|||
|
||||
return (
|
||||
<Page>
|
||||
{window.location.href}
|
||||
<div className="card">
|
||||
<header className="channel-cover">
|
||||
{!editing && cover && <img className="channel-cover__custom" src={cover} />}
|
||||
|
|
Loading…
Add table
Reference in a new issue