From 7036551ae0626836691d9d5ea475773d874b31a4 Mon Sep 17 00:00:00 2001 From: w3bdesign <45217974+w3bdesign@users.noreply.github.com> Date: Thu, 3 Jul 2025 05:25:13 +0200 Subject: [PATCH] Update cartUpdater.js --- plugins/cartUpdater.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/cartUpdater.js b/plugins/cartUpdater.js index 23d155a0..a654f6ac 100644 --- a/plugins/cartUpdater.js +++ b/plugins/cartUpdater.js @@ -7,7 +7,7 @@ export default defineNuxtPlugin((nuxtApp) => { cart.refetch(); // Refetch cart data on route change - nuxtApp.$router.beforeEach((to, from, next) => { + nuxtApp.$router.beforeEach((_to, _from, next) => { cart.refetch(); next(); });