fix(searchview2): fix types and remove deprecated search components

This commit is contained in:
danis
2024-01-07 23:54:35 +01:00
parent c7c9250594
commit a33d56bd61
5 changed files with 3 additions and 513 deletions
+2 -2
View File
@@ -277,10 +277,10 @@ export default class API {
};
}
public static getAllSongs(falseQuery: string, include?: SongInclude[]): Query<Song[]> {
public static getAllSongs(include?: SongInclude[]): Query<Song[]> {
include ??= [];
return {
key: ['songs', falseQuery, include],
key: ['songs', include],
exec: () =>
API.fetch(
{