bump comments length to 75

This commit is contained in:
Sean Yesmunt 2021-04-05 21:45:42 -04:00 committed by GitHub
parent 707ad5d4de
commit 7c83fa662c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ import LivestreamFeed from './view';
const select = (state, props) => ({ const select = (state, props) => ({
claim: makeSelectClaimForUri(props.uri)(state), claim: makeSelectClaimForUri(props.uri)(state),
comments: makeSelectTopLevelCommentsForUri(props.uri)(state).slice(0, 25), comments: makeSelectTopLevelCommentsForUri(props.uri)(state).slice(0, 75),
fetchingComments: selectIsFetchingComments(state), fetchingComments: selectIsFetchingComments(state),
}); });