diff --git a/.env b/.env index e33e53a..e2fc837 100644 --- a/.env +++ b/.env @@ -1,5 +1,4 @@ REACT_APP_BLOG_URL=https://media.conseiller-numerique.gouv.fr -REACT_APP_BACKOFFICE_URL=https://admin.conseiller-numerique.gouv.fr/login REACT_APP_DASHBOARD_URL=https://pilotage.conseiller-numerique.gouv.fr REACT_APP_COOP_URL=https://coop.conseiller-numerique.gouv.fr/login REACT_APP_CANDIDAT_URL=https://candidat.conseiller-numerique.gouv.fr/login diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 2c75624..94a76fe 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -49,7 +49,6 @@ jobs: uses: SpicyPizza/create-envfile@v1 with: envkey_REACT_APP_BLOG_URL: "https://media.conseiller-numerique.gouv.fr" - envkey_REACT_APP_BACKOFFICE_URL: "https://admin.conseiller-numerique.gouv.fr/login" envkey_REACT_APP_DASHBOARD_URL: "https://pilotage.conseiller-numerique.gouv.fr" envkey_REACT_APP_COOP_URL: "https://coop.conseiller-numerique.gouv.fr/login" envkey_REACT_APP_CANDIDAT_URL: "https://candidat.conseiller-numerique.gouv.fr/login" diff --git a/.github/workflows/deploy-recette.yml b/.github/workflows/deploy-recette.yml index 0880ee3..fcdf985 100644 --- a/.github/workflows/deploy-recette.yml +++ b/.github/workflows/deploy-recette.yml @@ -49,7 +49,6 @@ jobs: uses: SpicyPizza/create-envfile@v1 with: envkey_REACT_APP_BLOG_URL: "https://media.conseiller-numerique.gouv.fr" - envkey_REACT_APP_BACKOFFICE_URL: "https://beta.admin.conseiller-numerique.gouv.fr/login" envkey_REACT_APP_DASHBOARD_URL: "https://beta.pilotage.conseiller-numerique.gouv.fr" envkey_REACT_APP_COOP_URL: "https://beta.coop.conseiller-numerique.gouv.fr/login" envkey_REACT_APP_CANDIDAT_URL: "https://beta.candidat.conseiller-numerique.gouv.fr/login" diff --git a/src/components/Menu.js b/src/components/Menu.js index 83b4202..93de9dd 100644 --- a/src/components/Menu.js +++ b/src/components/Menu.js @@ -14,7 +14,6 @@ function Menu() { const [changedMenu, setIsChangedMenu] = useState(false); const urlBlog = process.env.REACT_APP_BLOG_URL; - const urlBackoffice = process.env.REACT_APP_BACKOFFICE_URL; const urlDashboard = process.env.REACT_APP_DASHBOARD_URL; const urlCoop = process.env.REACT_APP_COOP_URL; const urlCandidat = process.env.REACT_APP_CANDIDAT_URL;