Skip to content

Commit

Permalink
fix: fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
adgeg authored and Joseph Robert committed Sep 20, 2022
1 parent ad71615 commit 35bde2e
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions pages/mes-rendezvous.tsx
Expand Up @@ -70,12 +70,11 @@ function MesRendezvous({
}

async function chargerRdvs7Jours(index7Jours: number) {
const rdvs7Jours =
await rendezVousService.getRendezVousConseiller(
conseiller!.id,
jourDeDebutDesRdvs(index7Jours),
jourDeFinDesRdvs(index7Jours)
)
const rdvs7Jours = await rendezVousService.getRendezVousConseiller(
conseiller!.id,
jourDeDebutDesRdvs(index7Jours),
jourDeFinDesRdvs(index7Jours)
)
if (rdvs7Jours) setRdvs(rdvs7Jours.map(rdvToListItem))
}

Expand Down

0 comments on commit 35bde2e

Please sign in to comment.