mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-29 16:31:33 +00:00
fix claimType prop on home page
This commit is contained in:
parent
e430098613
commit
31ef391ff6
1 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@ function HomePage(props: Props) {
|
||||||
title: 'Top Channels On LBRY',
|
title: 'Top Channels On LBRY',
|
||||||
options: {
|
options: {
|
||||||
orderBy: ['effective_amount'],
|
orderBy: ['effective_amount'],
|
||||||
claimType: 'channel',
|
claimType: ['channel'],
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -117,7 +117,7 @@ function HomePage(props: Props) {
|
||||||
options: {
|
options: {
|
||||||
orderBy: ['effective_amount'],
|
orderBy: ['effective_amount'],
|
||||||
pageSize: 4,
|
pageSize: 4,
|
||||||
claimType: 'stream',
|
claimType: ['stream'],
|
||||||
releaseTime: `>${Math.floor(
|
releaseTime: `>${Math.floor(
|
||||||
moment()
|
moment()
|
||||||
.subtract(1, 'week')
|
.subtract(1, 'week')
|
||||||
|
|
Loading…
Add table
Reference in a new issue