fix: Incorrect "Artist" label/heading on Search Results Page #920

This commit is contained in:
Kingkor Roy Tirtho 2023-12-02 22:20:22 +06:00
parent 2a87a0fe28
commit f86d544916

View File

@ -32,7 +32,7 @@ class SearchArtistsSection extends HookConsumerWidget {
hasNextPage: query.hasNextPage, hasNextPage: query.hasNextPage,
items: artists, items: artists,
onFetchMore: query.fetchNext, onFetchMore: query.fetchNext,
title: Text(context.l10n.albums), title: Text(context.l10n.artists),
); );
} }
} }