Skip to content

Commit

Permalink
fix: ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhaup committed Oct 24, 2024
1 parent d097c5c commit a1d8b84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/LazyFlatList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ export interface LazyFlatListProps {

type Props<T> = LazyFlatListProps &
Omit<
React.ComponentProps<typeof Animated.FlatList<T>>,
'onLayout' | 'onScroll' | 'ref'
React.ComponentProps<typeof FlatList<T>>,
'onLayout' | 'onScroll' | 'ref' | 'CellRendererComponent'
>;

/**
Expand Down

0 comments on commit a1d8b84

Please sign in to comment.