diff --git a/mon-entreprise/source/components/SimulateurWarning.tsx b/mon-entreprise/source/components/SimulateurWarning.tsx
index 8f9de37c7..dacfd3524 100644
--- a/mon-entreprise/source/components/SimulateurWarning.tsx
+++ b/mon-entreprise/source/components/SimulateurWarning.tsx
@@ -93,6 +93,14 @@ export default function SimulateurWarning({
>
)}
+ {['indépendant', 'profession-libérale'].includes(simulateur) && (
+
+
+ Le montant des cotisations est calculé pour un revenu sur l'année
+ 2020
+
+
+ )}
)
diff --git a/mon-entreprise/source/components/conversation/select/SelectCommune.tsx b/mon-entreprise/source/components/conversation/select/SelectCommune.tsx
index 34db843ba..9a50e5326 100644
--- a/mon-entreprise/source/components/conversation/select/SelectCommune.tsx
+++ b/mon-entreprise/source/components/conversation/select/SelectCommune.tsx
@@ -41,7 +41,7 @@ async function searchCommunes(input: string): Promise | null> {
codesPostaux
.sort()
.map(codePostal => ({ ...commune, codePostal }))
- .filter(({ codePostal }) => codePostal.includes(number))
+ .filter(({ codePostal }) => codePostal.startsWith(number))
)
.slice(0, 10)
}
@@ -159,7 +159,7 @@ export default function Select({ onChange, value, id }) {
className="ui__"
onKeyDown={handleKeyDown}
aria-controls="liste-commune"
- placeholder={t('commune')}
+ placeholder={t('Commune ou code postal')}
value={name}
onChange={handleChange}
/>