From 8d1c39dd139e6e66e6a7e4996ec05647df54106b Mon Sep 17 00:00:00 2001 From: Vit Horacek Date: Fri, 27 Feb 2026 23:11:07 +0000 Subject: [PATCH] Fix RHP scroll for expenses with many fields on web MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The web-only overflowY:'auto' on MoneyRequestView created a CSS scroll container that could intercept wheel events, preventing them from propagating to the parent InvertedFlatList. Since MoneyRequestView has no constrained height, this never provided actual scrolling — it only created a parasitic scroll port. Removing it matches the native implementation which already uses {}. Made-with: Cursor --- src/styles/utils/overflowMoneyRequestView/index.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/styles/utils/overflowMoneyRequestView/index.ts b/src/styles/utils/overflowMoneyRequestView/index.ts index de6b8e7c27f19..45e6d5830c36a 100644 --- a/src/styles/utils/overflowMoneyRequestView/index.ts +++ b/src/styles/utils/overflowMoneyRequestView/index.ts @@ -1,8 +1,5 @@ import type OverflowMoneyRequestViewStyles from './types'; -const overflowMoneyRequestView: OverflowMoneyRequestViewStyles = { - overflowX: 'hidden', - overflowY: 'auto', -}; +const overflowMoneyRequestView: OverflowMoneyRequestViewStyles = {}; export default overflowMoneyRequestView;