feat(search): proper data passing through handler

This commit is contained in:
danis
2023-12-07 17:18:00 +01:00
parent be926dcaed
commit 5d103c6687
2 changed files with 8 additions and 14 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ import Song from '../../models/Song';
import { MusicItemType } from '../../components/UI/MusicItem';
export type searchProps = {
artist: number,
genre: number,
artist: number | undefined,
genre: number | undefined,
query: string,
}