From 44d9ebe24cb71172a21e9cd2513a4292d53989bf Mon Sep 17 00:00:00 2001 From: Oleksii Bulenok Date: Wed, 17 Jun 2026 17:43:52 +0200 Subject: [PATCH] fix GestureDetector has received a child that may get view-flattened --- src/components/InterestTabs.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/InterestTabs.tsx b/src/components/InterestTabs.tsx index 41638184f9..b015572f47 100644 --- a/src/components/InterestTabs.tsx +++ b/src/components/InterestTabs.tsx @@ -199,7 +199,10 @@ export function InterestTabs({ }, []) return ( - + // `collapsable={false}` keeps this as a real host view on the new arch so + // that a wrapping GestureDetector (e.g. BlockDrawerGesture) can attach to + // it - otherwise this layout-only view gets flattened away. +