only show content for tags on the homepage

This commit is contained in:
Jeremy Kauffman 2020-03-25 16:44:35 -04:00 committed by Sean Yesmunt
parent 0015cd909e
commit 195fb4363b

View file

@ -97,6 +97,7 @@ function HomePage(props: Props) {
options: { options: {
pageSize: 4, pageSize: 4,
tags: [tag.name], tags: [tag.name],
claimType: ['stream'],
}, },
})); }));
rowData.push(...followedRows); rowData.push(...followedRows);
@ -108,6 +109,7 @@ function HomePage(props: Props) {
link: `/$/${PAGES.TAGS_FOLLOWING}`, link: `/$/${PAGES.TAGS_FOLLOWING}`,
options: { options: {
tags: followedTags.map(tag => tag.name), tags: followedTags.map(tag => tag.name),
claimType: ['stream'],
}, },
}); });
} }