diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cb647ba20be6884e85c759a987a052982196a3fd..e3babaa13d4aaf66c3f70b967b2cd978081ced9b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,6 +2,10 @@ stages:
   - test
   - dockerize
 
+variables:
+  # to avoid "fatal: git fetch-pack: expected shallow list"
+  GIT_STRATEGY: clone
+
 test_backend:
   stage: test
   tags:
diff --git a/vospace-ui-frontend/src/components/modal/CreateFolderModal.vue b/vospace-ui-frontend/src/components/modal/CreateFolderModal.vue
index a3ff578a973b943bdb392fe0abb1568c2d309717..3184b9b63d4773f359cd7178aa418df91b76f9ca 100644
--- a/vospace-ui-frontend/src/components/modal/CreateFolderModal.vue
+++ b/vospace-ui-frontend/src/components/modal/CreateFolderModal.vue
@@ -42,8 +42,7 @@ export default {
         this.newFolderNameError = "Folder name is required";
       } else {
         this.$store.dispatch('createFolder', this.newFolderName)
-          .then(() => { //res
-            //this.$store.commit('updateGroupsPanel', res);
+          .then(() => {
             this.$bvModal.hide('create-folder-modal');
           })
           .catch(res => {