feat(choix-statut): Inclure l'EURL sans associé

pull/3107/head
Alice Dahan 2024-09-02 17:56:31 +02:00 committed by liliced
parent 39494b65b8
commit 2c04d94cc8
2 changed files with 1 additions and 5 deletions

View File

@ -246,10 +246,6 @@ function useAssociésSelection(): [
newState.question2 === 'oui' || newState.question3 === 'oui'
? 'non'
: undefined,
'entreprise . catégorie juridique . SARL . EURL':
newState.question2 === 'non' && newState.question3 === 'non'
? 'non'
: undefined,
})
)
}

View File

@ -107,7 +107,7 @@ function useStatutComparaison(): EngineComparison {
return namedEngines
}
const SASUEIAE: StatutType[] = ['SASU', 'EI', 'AE']
const SASUEIAE: StatutType[] = ['SASU', 'EURL', 'EI', 'AE']
const SASUEURL: StatutType[] = ['SASU', 'EURL']
const SASSARL: StatutType[] = ['SAS', 'SARL']
function usePossibleStatuts(): Array<StatutType> {