Merge pull request #891 from betagouv/fix-recherche-entreprise
🐛 Recherche d'entreprise: gère le cas de domiciliation inconnue
pull/898/head
commit
e390ce6106
|
@ -43,12 +43,17 @@ export default function CompanyDetails({ siren, denomination }: Etablissement) {
|
|||
<Skeleton width={80} />
|
||||
)}
|
||||
</strong>
|
||||
, <Trans>domiciliée à</Trans>{' '}
|
||||
,
|
||||
{company ? (
|
||||
<>
|
||||
<strong>{company.etablissement_siege.libelle_commune}</strong> (
|
||||
{company.etablissement_siege.code_postal})
|
||||
</>
|
||||
company?.etablissement_siege ? (
|
||||
<>
|
||||
<Trans>domiciliée à</Trans>{' '}
|
||||
<strong>{company.etablissement_siege.libelle_commune}</strong> (
|
||||
{company.etablissement_siege.code_postal})
|
||||
</>
|
||||
) : (
|
||||
<Trans>domiciliation inconnue</Trans>
|
||||
)
|
||||
) : (
|
||||
<Skeleton width={100} />
|
||||
)}
|
||||
|
|
|
@ -370,6 +370,7 @@ créer:
|
|||
titre: Create a company
|
||||
warningPL: 'Note: the case of regulated liberal professions is not covered'
|
||||
d'aides: of aid
|
||||
domiciliation inconnue: unknown address
|
||||
domiciliée à: domiciled in
|
||||
déductible: deductible
|
||||
déplier: show more
|
||||
|
|
Loading…
Reference in New Issue