fix PR III

This commit is contained in:
danis
2023-09-09 17:52:22 +02:00
parent 3ff523560b
commit b61541f7b8

View File

@@ -12,8 +12,8 @@ import { ScrollView } from 'native-base';
import { RouteProps } from '../Navigation';
interface SearchContextType {
filter: 'artist' | 'song' | 'genre' | 'all' | 'favorite';
updateFilter: (newData: 'artist' | 'song' | 'genre' | 'all' | 'favorite') => void;
filter: 'artist' | 'song' | 'genre' | 'all';
updateFilter: (newData: 'artist' | 'song' | 'genre' | 'all') => void;
stringQuery: string;
updateStringQuery: (newData: string) => void;
songData: Song[];