From 7c83fa662c97fad82f0952f6d4c77c5366647d79 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Mon, 5 Apr 2021 21:45:42 -0400 Subject: [PATCH] bump comments length to 75 --- ui/component/livestreamComments/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/component/livestreamComments/index.js b/ui/component/livestreamComments/index.js index 3e183e691..9544a5b87 100644 --- a/ui/component/livestreamComments/index.js +++ b/ui/component/livestreamComments/index.js @@ -7,7 +7,7 @@ import LivestreamFeed from './view'; const select = (state, props) => ({ claim: makeSelectClaimForUri(props.uri)(state), - comments: makeSelectTopLevelCommentsForUri(props.uri)(state).slice(0, 25), + comments: makeSelectTopLevelCommentsForUri(props.uri)(state).slice(0, 75), fetchingComments: selectIsFetchingComments(state), });