diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index bf45fba..88f52e0 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -7,7 +7,7 @@
-
+
@@ -39,7 +39,7 @@
@@ -230,7 +230,7 @@
"RunOnceActivity.TerminalTabsStorage.copyFrom.TerminalArrangementManager.252": "true",
"RunOnceActivity.git.unshallow": "true",
"RunOnceActivity.typescript.service.memoryLimit.init": "true",
- "git-widget-placeholder": "feat/352-modification-front-admin-fournisseur",
+ "git-widget-placeholder": "develop",
"last_opened_file_path": "/home/sroy/Documents/test/Ferme/frontend/components/commun",
"node.js.detected.package.eslint": "true",
"node.js.detected.package.tslint": "true",
@@ -793,6 +793,10 @@
6
+
+ file://$PROJECT_DIR$/frontend/services/dto/shipment-data.ts
+
+
file://$PROJECT_DIR$/frontend/layouts/default.vue
72
diff --git a/frontend/components/commun/update-weight.vue b/frontend/components/commun/update-weight.vue
index c0abab9..cb9a561 100644
--- a/frontend/components/commun/update-weight.vue
+++ b/frontend/components/commun/update-weight.vue
@@ -8,7 +8,6 @@
v-model="localWeight.weight"
:disabled="!isAdmin"
:min="0"
- :max="48000"
wrapper-class="flex-col"
/>
diff --git a/frontend/composables/useWeighing.ts b/frontend/composables/useWeighing.ts
index c8f4357..f18cd95 100644
--- a/frontend/composables/useWeighing.ts
+++ b/frontend/composables/useWeighing.ts
@@ -1,6 +1,5 @@
-import type {Ref} from 'vue'
import {computed, ref} from 'vue'
-import type {ReceptionData, ReceptionPayload, WeightEntryData} from '~/services/dto/reception-data'
+import type {WeightEntryData} from '~/services/dto/reception-data'
import type {WeightData} from '~/services/dto/weight-data'
import {getWeight} from '~/services/reception'
import {getWeightShipment} from '~/services/shipment'