Skip to content

Commit

Permalink
fix: oups
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurlbrjc committed Jun 18, 2024
1 parent 59af8c9 commit 464078a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { useConseiller } from 'utils/conseiller/conseillerContext'
const ContenuCGUConseillerCEJ = dynamic(
() => import('components/ContenuCGUConseillerCEJ')
)
const ContenuCGUConseillerPAssEmploi = dynamic(
const ContenuCGUConseillerPassEmploi = dynamic(
() => import('components/ContenuCGUConseillerPassEmploi')
)

Expand Down Expand Up @@ -61,7 +61,7 @@ function ConsentementCguPage({ returnTo }: ConsentementCguProps) {
<HeaderCGU conseiller={conseiller} />

<main role='main'>
{estPassEmploi(conseiller) && <ContenuCGUConseillerPAssEmploi />}
{estPassEmploi(conseiller) && <ContenuCGUConseillerPassEmploi />}
{!estPassEmploi(conseiller) && <ContenuCGUConseillerCEJ />}

<form onSubmit={validerLesCGU} className='flex flex-col mt-10'>
Expand Down

0 comments on commit 464078a

Please sign in to comment.