From 8b99c41d20cb8160925a266b67384be4432442df Mon Sep 17 00:00:00 2001
From: DESPRES Damien <ddespres@neogeo.fr>
Date: Fri, 24 Sep 2021 17:09:39 +0200
Subject: [PATCH] fix

---
 src/store/modules/map.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/store/modules/map.js b/src/store/modules/map.js
index 3631f82b..4a84a098 100644
--- a/src/store/modules/map.js
+++ b/src/store/modules/map.js
@@ -97,7 +97,7 @@ const map = {
     },
 
     GET_BASEMAPS({ commit }, project_slug) {
-      axios
+      return axios
         .get(`${this.state.configuration.VUE_APP_DJANGO_API_BASE}base-maps/?project__slug=${project_slug}`)
         .then((response) => (commit("SET_BASEMAPS", response.data)))
         .catch((error) => {
-- 
GitLab