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,
|
||||
empty,
|
||||
} = 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 [searchResults, setSearchResults] = React.useState(undefined);
|
||||
const {
|
||||
|
|
Loading…
Reference in a new issue