diff --git a/src/components/AlbumView/Header.vue b/src/components/AlbumView/Header.vue
index 1b3333ed..8d104785 100644
--- a/src/components/AlbumView/Header.vue
+++ b/src/components/AlbumView/Header.vue
@@ -40,8 +40,11 @@
/>
-
-
![]()
+
+
@@ -92,7 +95,7 @@ useVisibility(albumheaderthing, handleVisibilityState);
diff --git a/src/stores/search.ts b/src/stores/search.ts
index ad2e66a9..42271566 100644
--- a/src/stores/search.ts
+++ b/src/stores/search.ts
@@ -89,7 +89,7 @@ export default defineStore("search", () => {
}
function loadTracks() {
- loadCounter.tracks += 6;
+ loadCounter.tracks += 12;
loadMoreTracks(loadCounter.tracks)
.then((res) => {
@@ -100,7 +100,7 @@ export default defineStore("search", () => {
}
function loadAlbums() {
- loadCounter.albums += 6;
+ loadCounter.albums += 12;
loadMoreAlbums(loadCounter.albums)
.then((res) => {
@@ -115,7 +115,7 @@ export default defineStore("search", () => {
}
function loadArtists() {
- loadCounter.artists += 6;
+ loadCounter.artists += 12;
loadMoreArtists(loadCounter.artists)
.then((res) => {
@@ -186,8 +186,6 @@ export default defineStore("search", () => {
currentTab.value = tab;
}
- setTimeout(() => {}, 3000);
-
return {
tracks,
albums,
diff --git a/src/views/Search.vue b/src/views/Search.vue
index 7ca015cd..6f312e3e 100644
--- a/src/views/Search.vue
+++ b/src/views/Search.vue
@@ -1,13 +1,12 @@