From bf110f9adfdc97bd99b9174120d2efce98697e05 Mon Sep 17 00:00:00 2001 From: Maxime Lalo Date: Thu, 4 Apr 2024 14:42:06 +0200 Subject: [PATCH] :sparkles: renaming page in manage --- .../Components/DesignSystem/Header/Navigation/index.tsx | 6 +++--- .../Layouts/Subscription/SubscriptionFacturation/index.tsx | 2 +- src/front/Config/Module/development.json | 6 +++--- src/front/Config/Module/preprod.json | 6 +++--- src/front/Config/Module/production.json | 6 +++--- src/front/Config/Module/staging.json | 6 +++--- src/pages/subscription/{facturation => manage}/index.tsx | 0 7 files changed, 16 insertions(+), 16 deletions(-) rename src/pages/subscription/{facturation => manage}/index.tsx (100%) diff --git a/src/front/Components/DesignSystem/Header/Navigation/index.tsx b/src/front/Components/DesignSystem/Header/Navigation/index.tsx index d2a1764b..e7c05bdb 100644 --- a/src/front/Components/DesignSystem/Header/Navigation/index.tsx +++ b/src/front/Components/DesignSystem/Header/Navigation/index.tsx @@ -90,9 +90,9 @@ export default function Navigation() { /> ); diff --git a/src/front/Components/Layouts/Subscription/SubscriptionFacturation/index.tsx b/src/front/Components/Layouts/Subscription/SubscriptionFacturation/index.tsx index 4c783266..aa437ef3 100644 --- a/src/front/Components/Layouts/Subscription/SubscriptionFacturation/index.tsx +++ b/src/front/Components/Layouts/Subscription/SubscriptionFacturation/index.tsx @@ -46,7 +46,7 @@ export default function SubscriptionFacturation() {
- Facturation + Abonnement
diff --git a/src/front/Config/Module/development.json b/src/front/Config/Module/development.json index 9c23ac7e..01977fca 100644 --- a/src/front/Config/Module/development.json +++ b/src/front/Config/Module/development.json @@ -285,11 +285,11 @@ "labelKey": "invite" } }, - "Facturation": { + "Manage": { "enabled": true, "props": { - "path": "/subscription/facturation", - "labelKey": "facturation" + "path": "/subscription/manage", + "labelKey": "manage" } }, "New": { diff --git a/src/front/Config/Module/preprod.json b/src/front/Config/Module/preprod.json index 9c23ac7e..01977fca 100644 --- a/src/front/Config/Module/preprod.json +++ b/src/front/Config/Module/preprod.json @@ -285,11 +285,11 @@ "labelKey": "invite" } }, - "Facturation": { + "Manage": { "enabled": true, "props": { - "path": "/subscription/facturation", - "labelKey": "facturation" + "path": "/subscription/manage", + "labelKey": "manage" } }, "New": { diff --git a/src/front/Config/Module/production.json b/src/front/Config/Module/production.json index 9c23ac7e..01977fca 100644 --- a/src/front/Config/Module/production.json +++ b/src/front/Config/Module/production.json @@ -285,11 +285,11 @@ "labelKey": "invite" } }, - "Facturation": { + "Manage": { "enabled": true, "props": { - "path": "/subscription/facturation", - "labelKey": "facturation" + "path": "/subscription/manage", + "labelKey": "manage" } }, "New": { diff --git a/src/front/Config/Module/staging.json b/src/front/Config/Module/staging.json index 9c23ac7e..01977fca 100644 --- a/src/front/Config/Module/staging.json +++ b/src/front/Config/Module/staging.json @@ -285,11 +285,11 @@ "labelKey": "invite" } }, - "Facturation": { + "Manage": { "enabled": true, "props": { - "path": "/subscription/facturation", - "labelKey": "facturation" + "path": "/subscription/manage", + "labelKey": "manage" } }, "New": { diff --git a/src/pages/subscription/facturation/index.tsx b/src/pages/subscription/manage/index.tsx similarity index 100% rename from src/pages/subscription/facturation/index.tsx rename to src/pages/subscription/manage/index.tsx