From 59aeb3767cb3f5349d8f250c334ee5b07f0e375b Mon Sep 17 00:00:00 2001 From: Anurag Shivarathri Date: Fri, 22 Jul 2022 20:14:19 +0530 Subject: [PATCH] Fix (#6500) --- app/components/post_list/more_messages/more_messages.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/post_list/more_messages/more_messages.tsx b/app/components/post_list/more_messages/more_messages.tsx index c1ca8c457..de2bba467 100644 --- a/app/components/post_list/more_messages/more_messages.tsx +++ b/app/components/post_list/more_messages/more_messages.tsx @@ -114,7 +114,7 @@ const MoreMessages = ({ const [remaining, setRemaining] = useState(0); const underlayColor = useMemo(() => `hsl(${hexToHue(theme.buttonBg)}, 50%, 38%)`, [theme]); const top = useSharedValue(0); - const shownTop = isTablet || isCRTEnabled ? 5 : SHOWN_TOP; + const shownTop = isTablet || (isCRTEnabled && rootId) ? 5 : SHOWN_TOP; const BARS_FACTOR = Math.abs((1) / (HIDDEN_TOP - SHOWN_TOP)); const styles = getStyleSheet(theme); const animatedStyle = useAnimatedStyle(() => ({