Skip to content

Commit 31c2a4c

Browse files
committed
chore: Remove bundle naming
1 parent 23749ee commit 31c2a4c

32 files changed

+16647
-15336
lines changed

.env

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,6 @@ E2E_TEST_ACCOUNT_BASE_PASSWORD=test-password
117117
# Monitor Premium features
118118
# Link to start user on the subscription process. PREMIUM_ENABLED must be set to `true`.
119119
SUBSCRIPTION_BILLING_AMOUNT_MONTHLY_US=42.42
120-
SUBSCRIPTION_BILLING_AMOUNT_BUNDLE_INDIVIDUAL_MONTHLY_US=424
121-
SUBSCRIPTION_BILLING_AMOUNT_BUNDLE_MONTHLY_US=42
122120

123121
# SubPlat 2.0 URL, product and plan IDs, used for Plus subscriptions:
124122
FXA_SUBSCRIPTIONS_URL=https://accounts.stage.mozaws.net/subscriptions

.env.local.example

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ EMAIL_FROM="Mozilla Monitor Stage <[email protected]>"
4343
# Whether GA4 sends data or not. NOTE: must be set in build environment.
4444
NEXT_PUBLIC_GA4_DEBUG_MODE=true
4545
SUBSCRIPTION_BILLING_AMOUNT_MONTHLY_US=42.42
46-
SUBSCRIPTION_BILLING_AMOUNT_BUNDLE_INDIVIDUAL_MONTHLY_US=424
47-
SUBSCRIPTION_BILLING_AMOUNT_BUNDLE_MONTHLY_US=42
4846

4947
# HIBP setup
5048
HIBP_KANON_API_ROOT=https://enterprise.stage-api.haveibeenpwned.com

.github/workflows/functional_tests_pr.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ jobs:
8383
ONEREP_API_BASE: "http://localhost:6060/api/mock/onerep/"
8484
ONEREP_API_KEY: ${{ secrets.ONEREP_API_KEY }}
8585
PREMIUM_PLAN_ID_MONTHLY_US: ${{ secrets.STAGE_PREMIUM_PLAN_ID_MONTHLY_US }}
86+
PREMIUM_PLAN_ID_YEARLY_US: ${{ secrets.STAGE_PREMIUM_PLAN_ID_YEARLY_US }}
8687
PREMIUM_PRODUCT_ID: ${{ secrets.STAGE_PREMIUM_PRODUCT_ID }}
8788
REDIS_URL: "redis://redis.mock"
8889
- uses: actions/upload-artifact@v4

package-lock.json

Lines changed: 16202 additions & 13579 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/(proper_react)/(redesign)/(authenticated)/user/(dashboard)/dashboard/Dashboard.stories.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,12 +244,10 @@ const DashboardWrapper = (props: DashboardWrapperProps) => {
244244
isEligibleForPremium={props.countryCode === "us"}
245245
isEligibleForFreeScan={props.countryCode === "us" && !scanData.scan}
246246
monthlySubscriptionUrl=""
247-
yearlySubscriptionUrl=""
248247
fxaSettingsUrl=""
249248
scanCount={scanCount}
250249
totalNumberOfPerformedScans={props.totalNumberOfPerformedScans}
251250
subscriptionBillingAmount={{
252-
yearly: 13.37,
253251
monthly: 42.42,
254252
}}
255253
isNewUser={true}

src/app/(proper_react)/(redesign)/(authenticated)/user/(dashboard)/dashboard/DashboardNonUSUsers.stories.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,12 +206,10 @@ const DashboardWrapper = (props: DashboardWrapperProps) => {
206206
isEligibleForPremium={props.countryCode === "us"}
207207
isEligibleForFreeScan={props.countryCode === "us" && !scanData.scan}
208208
monthlySubscriptionUrl=""
209-
yearlySubscriptionUrl=""
210209
fxaSettingsUrl=""
211210
scanCount={scanCount}
212211
totalNumberOfPerformedScans={props.totalNumberOfPerformedScans}
213212
subscriptionBillingAmount={{
214-
yearly: 13.37,
215213
monthly: 42.42,
216214
}}
217215
isNewUser={true}

src/app/(proper_react)/(redesign)/(authenticated)/user/(dashboard)/dashboard/DashboardPlusUsers.stories.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,12 +205,10 @@ const DashboardWrapper = (props: DashboardWrapperProps) => {
205205
isEligibleForPremium={props.countryCode === "us"}
206206
isEligibleForFreeScan={props.countryCode === "us" && !scanData.scan}
207207
monthlySubscriptionUrl=""
208-
yearlySubscriptionUrl=""
209208
fxaSettingsUrl=""
210209
scanCount={scanCount}
211210
totalNumberOfPerformedScans={props.totalNumberOfPerformedScans}
212211
subscriptionBillingAmount={{
213-
yearly: 13.37,
214212
monthly: 42.42,
215213
}}
216214
isNewUser={true}

src/app/(proper_react)/(redesign)/(authenticated)/user/(dashboard)/dashboard/DashboardUSUsers.stories.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,12 +206,10 @@ const DashboardWrapper = (props: DashboardWrapperProps) => {
206206
isEligibleForPremium={props.countryCode === "us"}
207207
isEligibleForFreeScan={props.countryCode === "us" && !scanData.scan}
208208
monthlySubscriptionUrl=""
209-
yearlySubscriptionUrl=""
210209
fxaSettingsUrl=""
211210
scanCount={scanCount}
212211
totalNumberOfPerformedScans={props.totalNumberOfPerformedScans}
213212
subscriptionBillingAmount={{
214-
yearly: 13.37,
215213
monthly: 42.42,
216214
}}
217215
isNewUser={true}

src/app/(proper_react)/(redesign)/(authenticated)/user/(dashboard)/dashboard/View.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,6 @@ export const View = (props: Props) => {
621621
});
622622
}}
623623
monthlySubscriptionUrl={props.monthlySubscriptionUrl}
624-
yearlySubscriptionUrl={props.yearlySubscriptionUrl}
625624
subscriptionBillingAmount={props.subscriptionBillingAmount}
626625
totalNumberOfPerformedScans={props.totalNumberOfPerformedScans}
627626
enabledFeatureFlags={props.enabledFeatureFlags}

src/app/(proper_react)/(redesign)/(authenticated)/user/(dashboard)/settings/View.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ export const SettingsView = (props: Props) => {
6767
<Toolbar
6868
user={props.user}
6969
monthlySubscriptionUrl={props.monthlySubscriptionUrl}
70-
yearlySubscriptionUrl={props.yearlySubscriptionUrl}
7170
subscriptionBillingAmount={props.subscriptionBillingAmount}
7271
fxaSettingsUrl={props.fxaSettingsUrl}
7372
lastScanDate={props.lastScanDate ?? null}

0 commit comments

Comments
 (0)