From 37cebf11ee09a961ffb54ad0a8ebd73cb0657756 Mon Sep 17 00:00:00 2001 From: ale Date: Sat, 13 Sep 2025 20:21:08 -0300 Subject: [PATCH] =?UTF-8?q?Eliminado=20par=C3=A1metro=20innecesario?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/js/store/modules/admin/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/store/modules/admin/index.ts b/resources/js/store/modules/admin/index.ts index e5e0cb7..7279042 100644 --- a/resources/js/store/modules/admin/index.ts +++ b/resources/js/store/modules/admin/index.ts @@ -65,7 +65,7 @@ const actions = { await axios.post(`/api/grupos-de-compra/${state.grupo_de_compra_id}/${caracteristica_id}`); commit('toggleCaracteristica', { caracteristica_id: caracteristica_id }) }, - async abrirFaltantesYSobrantes({ commit, dispatch }) { + async abrirFaltantesYSobrantes({ dispatch }) { const { data } = await axios.get(`/admin/${state.grupo_de_compra_id}/faltantes-y-sobrantes`) const pedido = { pedido_id: data.id }; dispatch("productos/init", null, { root: true });