Fix pagination problem

This commit is contained in:
marzban-dev
2026-05-02 21:36:19 +03:30
parent 0ce96e4bae
commit 11940152b2
4 changed files with 13 additions and 28 deletions
@@ -24,7 +24,7 @@ const currentCategory = computed({
router.push({
name: "products-slug",
params: { slug: ["category", newValue] },
query: { ...route.query },
query: { ...route.query, page: "1" },
});
},
});