Gekidou fix recent_item (#6477)

This commit is contained in:
Avinash Lingaloo 2022-07-15 16:23:21 +04:00 committed by GitHub
parent 33d9e6257e
commit d375aa7fa0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,11 +39,6 @@ const getStyleFromTheme = makeStyleSheetFromTheme((theme) => {
};
});
export type RecentItemType = {
terms: string;
isOrSearch: boolean;
}
type Props = {
setRecentValue: (value: string) => void;
item: TeamSearchHistoryModel;
@ -89,7 +84,6 @@ const RecentItem = ({item, setRecentValue}: Props) => {
</View>
}
separator={false}
theme={theme}
/>
);
};