Skip to content

Commit

Permalink
fix(rupture-co): changement de wording au niveau du résultat (#5841)
Browse files Browse the repository at this point in the history
* fix: wording

* fix: wording
  • Loading branch information
maxgfr committed May 7, 2024
1 parent 3ac0802 commit 059572e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ export const ui = {
/L’indemnité de licenciement ne concerne pas les salariés en CDD et en contrat de travail temporaire/
),
cddRupture: byText(
/La rupture conventionnelle ne concerne pas les salariés en CDD ou en contrat de travail temporaire/
/La rupture conventionnelle ne concerne pas les salariés en CDD ou en contrat d'intérim/
),
fauteGrave: byText(
/L’indemnité de licenciement n’est pas due en cas de faute grave/
Expand Down
2 changes: 1 addition & 1 deletion packages/code-du-travail-modeles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"test:watch": "nodemon --exec 'jest' --watch 'src/**' --ext 'ts,yaml'",
"build": "yarn prebuild && yarn postbuild",
"build:dev": "yarn build:swc && yarn postbuild",
"build:swc": "swc ./src --out-dir bin --copy-files",
"build:swc": "swc ./src --out-dir bin --copy-files --strip-leading-paths",
"postbuild": "node bin/internal/build.js",
"clean": "rimraf bin lib",
"type-check": "tsc --noEmit",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class IneligibilityRuptureConventionnelle implements IInegibility {
if (args.typeContratTravail && args.typeContratTravail === "cdd") {
return `
<p>
La rupture conventionnelle ne concerne pas les salariés en CDD ou en contrat de travail temporaire.
La rupture conventionnelle ne concerne pas les salariés en CDD ou en contrat d'intérim.
Sous certaines conditions, le salarié peut avoir le droit à une
<a href="/outils/indemnite-precarite">indemnité de précarité</a>.
</p>
Expand Down

0 comments on commit 059572e

Please sign in to comment.