mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
Temp workaround claims in channel count 0
This commit is contained in:
parent
1cb0461991
commit
aa0db24d0d
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ function ChannelContent(props: Props) {
|
||||||
claimType,
|
claimType,
|
||||||
empty,
|
empty,
|
||||||
} = props;
|
} = props;
|
||||||
const claimsInChannel = (claim && claim.meta.claims_in_channel) || 0;
|
const claimsInChannel = (claim && claim.meta.claims_in_channel && 1) || 0;
|
||||||
const [searchQuery, setSearchQuery] = React.useState('');
|
const [searchQuery, setSearchQuery] = React.useState('');
|
||||||
const [searchResults, setSearchResults] = React.useState(undefined);
|
const [searchResults, setSearchResults] = React.useState(undefined);
|
||||||
const {
|
const {
|
||||||
|
|
Loading…
Add table
Reference in a new issue