diff --git a/source/sites/mycompanyinfrance.fr/App.js b/source/sites/mycompanyinfrance.fr/App.js
index adb47a10f..af2b6d1a1 100644
--- a/source/sites/mycompanyinfrance.fr/App.js
+++ b/source/sites/mycompanyinfrance.fr/App.js
@@ -27,7 +27,7 @@ class InFranceRoute extends Component {
- - I don't have a company yet - -
-Thanks to the SIREN database, the public informations of your company will be automatically available for the next steps.
- ++ I don't have a company yet +
++ {' '} + Thanks to the SIREN database, the public informations of your company + will be automatically available for the next steps. +
+
diff --git a/source/sites/mycompanyinfrance.fr/pages/Company/LegalSetup.js b/source/sites/mycompanyinfrance.fr/pages/Company/LegalSetup.js
index d8a39edd1..58a4ba06d 100644
--- a/source/sites/mycompanyinfrance.fr/pages/Company/LegalSetup.js
+++ b/source/sites/mycompanyinfrance.fr/pages/Company/LegalSetup.js
@@ -13,7 +13,7 @@ type Props = {
}
const goToNextStep = (history: RouterHistory) => {
- history.push('/my-company/number-of-associate')
+ history.push('/register/number-of-associate')
}
const LegalSetup = ({ chooseCompanyLegalSetup, history }: Props) => (
<>
diff --git a/source/sites/mycompanyinfrance.fr/pages/Company/MainStatus.js b/source/sites/mycompanyinfrance.fr/pages/Company/MainStatus.js
index 9dcdb26ed..ca3354dcd 100644
--- a/source/sites/mycompanyinfrance.fr/pages/Company/MainStatus.js
+++ b/source/sites/mycompanyinfrance.fr/pages/Company/MainStatus.js
@@ -14,7 +14,7 @@ type Props = {
}
const StatusButton = ({ status }: { status: LegalStatus }) => (
-
+
Create {status}
)
diff --git a/source/sites/mycompanyinfrance.fr/pages/Company/NumberOfAssociate.js b/source/sites/mycompanyinfrance.fr/pages/Company/NumberOfAssociate.js
index c79c06ebb..21b52ab25 100644
--- a/source/sites/mycompanyinfrance.fr/pages/Company/NumberOfAssociate.js
+++ b/source/sites/mycompanyinfrance.fr/pages/Company/NumberOfAssociate.js
@@ -1,7 +1,7 @@
/* @flow */
+import { companyHaveMultipleAssociate } from 'Actions/companyStatusActions'
import React from 'react'
import { connect } from 'react-redux'
-import { companyHaveMultipleAssociate } from 'Actions/companyStatusActions'
import { SkipButton } from 'Ui/Button'
import type { RouterHistory } from 'react-router'
@@ -11,7 +11,7 @@ type Props = {
}
const goToNextStep = (history: RouterHistory) => {
- history.push('/my-company/define-director-status')
+ history.push('/register/define-director-status')
}
const NumberOfAssociate = ({
diff --git a/source/sites/mycompanyinfrance.fr/pages/Header/StepsHeader.js b/source/sites/mycompanyinfrance.fr/pages/Header/StepsHeader.js
index 3315f2053..ef1b0dc97 100644
--- a/source/sites/mycompanyinfrance.fr/pages/Header/StepsHeader.js
+++ b/source/sites/mycompanyinfrance.fr/pages/Header/StepsHeader.js
@@ -26,7 +26,7 @@ type Props = {
const StepsHeader = ({ companyProgress, estimationProgress }: Props) => (