From 80c5f23da274adb9270a024e7f0e84e09b8f575e Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 29 Oct 2024 14:32:10 +0200 Subject: Fix double padding in `Dialog.InnerFlatList` on web (#5986) * remove extra padding on web * pass prop --- src/components/dialogs/GifSelect.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/components/dialogs/GifSelect.tsx') diff --git a/src/components/dialogs/GifSelect.tsx b/src/components/dialogs/GifSelect.tsx index 64ad2624a..8ced355e4 100644 --- a/src/components/dialogs/GifSelect.tsx +++ b/src/components/dialogs/GifSelect.tsx @@ -144,7 +144,7 @@ function GifList({ a.mb_lg, a.flex_row, a.align_center, - !gtMobile && isWeb && a.gap_md, + !gtMobile && web(a.gap_md), ]}> {/* cover top corners */} {listHeader} @@ -238,8 +239,6 @@ function GifList({ onEndReached={onEndReached} onEndReachedThreshold={4} keyExtractor={(item: Gif) => item.id} - // @ts-expect-error web only - style={isWeb && {minHeight: '100vh'}} keyboardDismissMode="on-drag" ListFooterComponent={ hasData ? ( -- cgit 1.4.1