diff --git a/src/components/Project/FeaturesListAndMap/FeatureListTable.vue b/src/components/Project/FeaturesListAndMap/FeatureListTable.vue
index 00cd492a07e6e848e008e403b04dd46332178a45..b90db16cef95bc7011971ee8c67e80045a4e9944 100644
--- a/src/components/Project/FeaturesListAndMap/FeatureListTable.vue
+++ b/src/components/Project/FeaturesListAndMap/FeatureListTable.vue
@@ -512,7 +512,6 @@ export default {
 .dataTables_wrapper {
   position: relative;
   clear: both;
-  margin: 0 1em;
 }
 table.dataTable th.dt-center, table.dataTable td.dt-center, table.dataTable td.dataTables_empty {
   text-align: center;
diff --git a/src/store/modules/feature.store.js b/src/store/modules/feature.store.js
index 19f01b06568606374994b81a2cb92e3f6b7cfb9c..5d7858136b77be43e1d4362d4bd887a924ea6fb8 100644
--- a/src/store/modules/feature.store.js
+++ b/src/store/modules/feature.store.js
@@ -177,7 +177,6 @@ const feature = {
     },
 
     SEND_FEATURE({ state, rootState, dispatch }, routeName) {
-      //commit('DISPLAY_LOADER', 'Le signalement est en cours de création', { root: true });
       function redirect(featureId) {
         dispatch(
           'GET_PROJECT_FEATURE',
@@ -187,7 +186,6 @@ const feature = {
           }
         )
           .then(() => {
-            //commit('DISCARD_LOADER', null, { root: true });
             router.push({
               name: 'details-signalement',
               params: {
@@ -253,7 +251,6 @@ const feature = {
         }
       })
         .catch((error) => {
-          //commit('DISCARD_LOADER', null, { root: true });
           if (error.message === 'Network Error' || !rootState.isOnline) {
             let arraysOffline = [];
             const localStorageArray = localStorage.getItem('geocontrib_offline');
diff --git a/src/views/Project/FeaturesListAndMap.vue b/src/views/Project/FeaturesListAndMap.vue
index 9b6c054255e2aa143833bf1aa79946f407f3decc..ec06f0109c760e5e47f35e3e16ef9e20a16c05d1 100644
--- a/src/views/Project/FeaturesListAndMap.vue
+++ b/src/views/Project/FeaturesListAndMap.vue
@@ -228,8 +228,6 @@ export default {
 
   methods: {
     ...mapActions('feature', [
-      'GET_PROJECT_FEATURES',
-      'SEND_FEATURE',
       'DELETE_FEATURE',
     ]),