diff --git a/src/store/modules/map.js b/src/store/modules/map.js
index 3631f82b8329f3774854d47569a4a7f1e210be84..4a84a098f5bb2347b321b27cd09956360c87b3a7 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) => {