diff --git a/frontend/spa/src/stores/SearchStore.js b/frontend/spa/src/stores/SearchStore.js index 56cdfad..98886ea 100644 --- a/frontend/spa/src/stores/SearchStore.js +++ b/frontend/spa/src/stores/SearchStore.js @@ -49,6 +49,7 @@ export const useSearchStore = defineStore('search', { }); try { + this.page = 1; this.isLoading = true; const response = await this.fetchProducts(this.search, this.page, 10); console.debug('[Search] Perform Search: ', response);