diff --git a/src/stores/action.js b/src/stores/action.js index efa01fc9..33482f91 100644 --- a/src/stores/action.js +++ b/src/stores/action.js @@ -12,7 +12,7 @@ export default { Promise.all(promises).then(res => { const [{ data: bootstrappers = {} }, { data: advertiseType = {} }] = res; commit("BOOTSTRAPPERS", bootstrappers); - commit("ADVERTISEMENT", { type: advertiseType }); + commit("ADVERTISEMENT", advertiseType); }); },