Remove useless dynamic translation

pull/2543/head
Jérémy Rialland 2023-03-15 12:44:12 +01:00 committed by Jérémy Rialland
parent 0eabc48c8c
commit 1c0fec52cf
1 changed files with 1 additions and 13 deletions

View File

@ -21,7 +21,6 @@ type StatutButtonProps = {
const StatutButton = ({ statut }: StatutButtonProps) => {
const { absoluteSitePaths } = useSitePaths()
const { t } = useTranslation()
return (
<Button
@ -35,18 +34,7 @@ const StatutButton = ({ statut }: StatutButtonProps) => {
) : (
<Trans>Créer une</Trans>
)}{' '}
{
// t("auto-entrepreneur")
// t("EIRL")
// t("auto-entrepreneur-EIRL")
// t("EI")
// t("SASU")
// t("SAS")
// t("SARL")
// t("EURL")
// t("SA")
t(statut)
}
{statut}
</>
</Button>
)