diff --git a/src/scripts/coopstarter.js b/src/scripts/coopstarter.js
index ead03b955a9a69c1d0d4cc5304214c373d33b282..b93ffe88de7794e03bee4bee4ed61a021bca7285 100644
--- a/src/scripts/coopstarter.js
+++ b/src/scripts/coopstarter.js
@@ -209,36 +209,36 @@ function selectHiddenManagementForType(tab, form) {
 /**
  * Init type to type 1
  */
-function InitManagementForType() {
-  var forms = document.querySelectorAll(".resource_by_step");
-
-  forms.forEach(form => {
-    form.addEventListener(
-      "populate",
-      e => {
-        window.setTimeout(() => {
-          let type_hidden_field = form.querySelectorAll('select[name="type"]');
-          type_hidden_field.forEach(function(select_hidden) {
-            options_hidden = select_hidden.getElementsByTagName("option");
-            for (let option_hidden of options_hidden) {
-              option_hidden.removeAttribute("selected");
-              if (option_hidden.value == '{"@id": "http://localhost:8000/types/1/"}') {
-                //Actually selecting the option if it is the good one
-                option_hidden.setAttribute("selected", "selected");
-                select_hidden.setAttribute("value", option_hidden.value);
-              }
-            }
-           //Trigerring a reload of the associated form
-      let parent_form = select_hidden.closest("sib-form");
-      parent_form.component.inputChange();
-      refreshPagination();
-          });
-        });
-      },
-      3000
-    );
-  });
-}
+// function InitManagementForType() {
+//   var forms = document.querySelectorAll(".resource_by_step");
+
+//   forms.forEach(form => {
+//     form.addEventListener(
+//       "populate",
+//       e => {
+//         window.setTimeout(() => {
+//           let type_hidden_field = form.querySelectorAll('select[name="type"]');
+//           type_hidden_field.forEach(function(select_hidden) {
+//             options_hidden = select_hidden.getElementsByTagName("option");
+//             for (let option_hidden of options_hidden) {
+//               option_hidden.removeAttribute("selected");
+//               if (option_hidden.value == '{"@id": "http://localhost:8000/types/1/"}') {
+//                 //Actually selecting the option if it is the good one
+//                 option_hidden.setAttribute("selected", "selected");
+//                 select_hidden.setAttribute("value", option_hidden.value);
+//               }
+//             }
+//            //Trigerring a reload of the associated form
+//       let parent_form = select_hidden.closest("sib-form");
+//       parent_form.component.inputChange();
+//       refreshPagination();
+//           });
+//         });
+//       },
+//       3000
+//     );
+//   });
+// }
 
 /**
  * Manage the report broken links hidden form
@@ -609,7 +609,7 @@ jQuery(document).ready(function($) {
   refreshPagination();
 
   //init the fitering by step
-  InitManagementForType();
+  // InitManagementForType();
 
   // Get the element with id="defaultOpen" and click on it
   document.getElementById("defaultOpen").click();