diff --git a/src/screens/VideoFeed/index.tsx b/src/screens/VideoFeed/index.tsx index 3963f3a7b7..8cf16eba15 100644 --- a/src/screens/VideoFeed/index.tsx +++ b/src/screens/VideoFeed/index.tsx @@ -862,15 +862,20 @@ function ExpandableRichTextView({ }) { const {height: screenHeight} = useSafeAreaFrame() const [expanded, setExpanded] = useState(false) + const [hasBeenExpanded, setHasBeenExpanded] = useState(false) const [constrained, setConstrained] = useState(false) const [contentHeight, setContentHeight] = useState(0) const {_} = useLingui() + if (expanded && !hasBeenExpanded) { + setHasBeenExpanded(true) + } + return ( { - if (expanded) { + if (hasBeenExpanded) { LayoutAnimation.configureNext({ duration: 500, update: {type: 'spring', springDamping: 0.6},