{supportAmount > 0 && (
diff --git a/ui/component/livestreamComments/view.jsx b/ui/component/livestreamComments/view.jsx
index 2cb3e5344..66be1202e 100644
--- a/ui/component/livestreamComments/view.jsx
+++ b/ui/component/livestreamComments/view.jsx
@@ -12,10 +12,11 @@ type Props = {
fetchingComments: boolean,
uri: string,
isMobile?: boolean,
+ restoreScrollPos?: () => void,
};
export default function LivestreamComments(props: Props) {
- const { commentsToDisplay, fetchingComments, uri, isMobile } = props;
+ const { commentsToDisplay, fetchingComments, uri, isMobile, restoreScrollPos } = props;
const [forceUpdate, setForceUpdate] = React.useState(0);
@@ -56,6 +57,7 @@ export default function LivestreamComments(props: Props) {
uri={uri}
forceUpdate={forceUpdate}
isMobile
+ restoreScrollPos={restoreScrollPos}
/>
))}