Skip to content

Commit

Permalink
wording pour les lots pour les intermediaires
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudambro committed Oct 24, 2024
1 parent 0214983 commit 8850d82
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ export default function CarcasseIntermediaire({ carcasse, canEdit, intermediaire
submitCarcasseAccept();
},
},
label: "Carcasse acceptée",
label: carcasse.type === CarcasseType.GROS_GIBIER ? "Carcasse acceptée" : "Lot accepté",
},
{
nativeInputProps: {
Expand All @@ -324,7 +324,7 @@ export default function CarcasseIntermediaire({ carcasse, canEdit, intermediaire
setCarcasseRefusCheckbox(true);
},
},
label: "Carcasse refusée",
label: carcasse.type === CarcasseType.GROS_GIBIER ? "Carcasse refusée" : "Lot refusé",
},
{
nativeInputProps: {
Expand All @@ -336,7 +336,7 @@ export default function CarcasseIntermediaire({ carcasse, canEdit, intermediaire
submitCarcasseManquante();
},
},
label: "Carcasse manquante",
label: carcasse.type === CarcasseType.GROS_GIBIER ? "Carcasse manquante" : "Lot manquant",
},
]}
/>
Expand Down

0 comments on commit 8850d82

Please sign in to comment.