Skip to content

Commit 6fc18b9

Browse files
committed
skip
1 parent e9ccdbf commit 6fc18b9

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

packages/uikit-react-native/src/components/ChatFlatList/FlatListInternal.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/**
2-
* */
31
import type { ForwardedRef, ReactElement } from 'react';
42
import type { FlatListProps, FlatList as RNFlatList, ScrollViewProps } from 'react-native';
53
import { Platform } from 'react-native';

packages/uikit-react-native/src/components/ChatFlatList/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ type Props = Omit<FlatListProps<SendbirdMessage>, 'onEndReached'> & {
1616
onScrolledAwayFromBottom: (value: boolean) => void;
1717
};
1818
// FIXME: Inverted FlatList performance issue on Android {@link https://github.com/facebook/react-native/issues/30034}
19-
const ChatFlatList = forwardRef<RNFlatList, Props>(function CustomFlatList(
19+
const ChatFlatList = forwardRef<RNFlatList, Props>(function ChatFlatList(
2020
{ onTopReached, onBottomReached, onScrolledAwayFromBottom, onScroll, ...props },
2121
ref,
2222
) {

0 commit comments

Comments
 (0)