Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
loicguillois committed Oct 3, 2024
1 parent d959b4b commit 370111b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/src/services/ceremaService/ceremaService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ export class CeremaService implements ConsultUserService {
throw establishmentContent.detail;
}

let u = {
const u = {
email: user.email,
establishmentSiren: parseInt(establishmentContent.siret.substring(0, 9)),
hasAccount: true,
hasCommitment: establishmentContent.acces_lovac !== null
}
hasCommitment: establishmentContent.acces_lovac !== null,
};
return u;
}));
return users;
Expand Down

0 comments on commit 370111b

Please sign in to comment.