@@ -5,12 +5,11 @@ import React, {forwardRef, useCallback, useEffect, useImperativeHandle, useMemo,
55import type { ForwardedRef } from 'react' ;
66import { View } from 'react-native' ;
77import type { NativeSyntheticEvent , StyleProp , ViewStyle } from 'react-native' ;
8- import Animated , { FadeOutUp , LinearTransition } from 'react-native-reanimated' ;
8+ import Animated , { Easing , FadeOutUp , LinearTransition } from 'react-native-reanimated' ;
99import Checkbox from '@components/Checkbox' ;
1010import * as Expensicons from '@components/Icon/Expensicons' ;
1111import MenuItem from '@components/MenuItem' ;
1212import Modal from '@components/Modal' ;
13- import { easing } from '@components/Modal/ReanimatedModal/utils' ;
1413import { usePersonalDetails } from '@components/OnyxListItemProvider' ;
1514import { PressableWithFeedback } from '@components/Pressable' ;
1615import type ChatListItem from '@components/SelectionList/ChatListItem' ;
@@ -40,6 +39,8 @@ import {createItemHeightCalculator} from './itemHeightCalculator';
4039import ITEM_HEIGHTS from './itemHeights' ;
4140import type { SearchQueryJSON } from './types' ;
4241
42+ const easing = Easing . bezier ( 0.76 , 0.0 , 0.24 , 1.0 ) ;
43+
4344const AnimatedFlashListComponent = Animated . createAnimatedComponent ( FlashList < SearchListItem > ) ;
4445
4546type SearchListItem = TransactionListItemType | TransactionGroupListItemType | ReportActionListItemType | TaskListItemType ;
0 commit comments