diff --git a/frontend/pages/products/[...slug].vue b/frontend/pages/products/[...slug].vue index 6bc1adc..ba9a558 100644 --- a/frontend/pages/products/[...slug].vue +++ b/frontend/pages/products/[...slug].vue @@ -36,7 +36,7 @@ const filters = computed(() => { in_stock: params.in_stock ?? false, has_discount: params.has_discount ?? false, category: Array.isArray(route.params.slug) ? route.params.slug[1] ?? undefined : undefined, - page: params.page ?? 1, + page: route.query["page"] ?? 1, }; }); @@ -153,6 +153,7 @@ watch(