We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 361ff92 commit 26d27cdCopy full SHA for 26d27cd
1 file changed
apps/frontend/src/modules/song-search/SearchSongPage.tsx
@@ -159,8 +159,8 @@ const SearchHeader = ({
159
const isSearch = useMemo(() => query !== '', [query]);
160
161
const title = useMemo(() => {
162
- if (loading) return '';
163
if (isSearch) {
+ if (loading) return '';
164
// TODO: implement this with proper variable substitution for translations
165
if (totalResults != 1) {
166
return `${totalResults.toLocaleString('en-UK')} results for "${query}"`;
0 commit comments