From 786a032656cafdb32e44da773a3f379b7e22c854 Mon Sep 17 00:00:00 2001 From: Florian Dieminger Date: Fri, 19 Jul 2024 19:36:48 +0200 Subject: [PATCH] chore(plus): remove fxa rebranding (#11500) --- .github/workflows/prod-build.yml | 6 +++--- .github/workflows/stage-build.yml | 4 ++-- client/src/env.ts | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/prod-build.yml b/.github/workflows/prod-build.yml index b2134db8c9e1..4f202df1b1ea 100644 --- a/.github/workflows/prod-build.yml +++ b/.github/workflows/prod-build.yml @@ -215,9 +215,9 @@ jobs: # Firefox Accounts and SubPlat settings REACT_APP_FXA_SIGNIN_URL: /users/fxa/login/authenticate/ - REACT_APP_FXA_SETTINGS_URL: https://accounts.firefox.com/settings/?brand=mozilla - REACT_APP_MDN_PLUS_SUBSCRIBE_URL: https://accounts.firefox.com/subscriptions/products/prod_LKvr8fYGbBxcaZ?brand=mozilla - REACT_APP_FXA_MANAGE_SUBSCRIPTIONS_URL: https://subscriptions.firefox.com/subscriptions/?brand=mozilla + REACT_APP_FXA_SETTINGS_URL: https://accounts.firefox.com/settings/ + REACT_APP_MDN_PLUS_SUBSCRIBE_URL: https://accounts.firefox.com/subscriptions/products/prod_LKvr8fYGbBxcaZ + REACT_APP_FXA_MANAGE_SUBSCRIPTIONS_URL: https://subscriptions.firefox.com/subscriptions/ REACT_APP_MDN_PLUS_5M_PLAN: price_1KeG02JNcmPzuWtR1oBrw8o6 REACT_APP_MDN_PLUS_5Y_PLAN: price_1KeG02JNcmPzuWtRslZijhQu diff --git a/.github/workflows/stage-build.yml b/.github/workflows/stage-build.yml index 2e513a546a5b..9cec7d32ff9d 100644 --- a/.github/workflows/stage-build.yml +++ b/.github/workflows/stage-build.yml @@ -234,8 +234,8 @@ jobs: # Firefox Accounts and SubPlat settings REACT_APP_FXA_SIGNIN_URL: /users/fxa/login/authenticate/ - REACT_APP_FXA_SETTINGS_URL: https://accounts.stage.mozaws.net/settings/?brand=mozilla - REACT_APP_MDN_PLUS_SUBSCRIBE_URL: https://accounts.stage.mozaws.net/subscriptions/products/prod_Jtbg9tyGyLRuB0?brand=mozilla + REACT_APP_FXA_SETTINGS_URL: https://accounts.stage.mozaws.net/settings/ + REACT_APP_MDN_PLUS_SUBSCRIBE_URL: https://accounts.stage.mozaws.net/subscriptions/products/prod_Jtbg9tyGyLRuB0 REACT_APP_MDN_PLUS_5M_PLAN: price_1JFoTYKb9q6OnNsLalexa03p REACT_APP_MDN_PLUS_5Y_PLAN: price_1JpIPwKb9q6OnNsLJLsIqMp7 REACT_APP_MDN_PLUS_10M_PLAN: price_1K6X7gKb9q6OnNsLi44HdLcC diff --git a/client/src/env.ts b/client/src/env.ts index 5364afdeee26..5f9eea8c8fb0 100644 --- a/client/src/env.ts +++ b/client/src/env.ts @@ -74,7 +74,7 @@ export const FXA_SIGNIN_URL = process.env.REACT_APP_FXA_SIGNIN_URL || ""; export const FXA_SETTINGS_URL = process.env.REACT_APP_FXA_SETTINGS_URL || ""; export const FXA_MANAGE_SUBSCRIPTIONS_URL = process.env.REACT_APP_FXA_MANAGE_SUBSCRIPTIONS_URL || - "https://accounts.stage.mozaws.net/subscriptions/?brand=mozilla"; + "https://accounts.stage.mozaws.net/subscriptions/"; export const DEFAULT_GEO_COUNTRY = process.env.REACT_APP_DEFAULT_GEO_COUNTRY || "United States";