This commit is contained in:
danis
2023-12-21 17:40:23 +01:00
parent dac9849ef5
commit b3853646cb
3 changed files with 23 additions and 9 deletions
-1
View File
@@ -55,7 +55,6 @@ const SearchBarComponent = (props: { onValidate: (searchData: searchProps) => vo
artist: artistsQuery.data?.find((a) => a.name === artist)?.id ?? undefined,
genre: genresQuery.data?.find((g) => g.name === genre)?.id ?? undefined,
};
props.onValidate(searchData);
};