From 84e319e8404ade2b0a81de0a548da9383aecdd67 Mon Sep 17 00:00:00 2001 From: Stephon Brown Date: Mon, 6 Oct 2025 11:34:17 -0400 Subject: [PATCH] fix(billing): Fix accurate typing --- .../upgrade/upgrade-account/upgrade-account.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/app/billing/individual/upgrade/upgrade-account/upgrade-account.component.ts b/apps/web/src/app/billing/individual/upgrade/upgrade-account/upgrade-account.component.ts index a68c64b390e..e9cb390d604 100644 --- a/apps/web/src/app/billing/individual/upgrade/upgrade-account/upgrade-account.component.ts +++ b/apps/web/src/app/billing/individual/upgrade/upgrade-account/upgrade-account.component.ts @@ -115,7 +115,7 @@ export class UpgradeAccountComponent implements OnInit { ), type: buttonType, }, - features: tier.passwordManager.features.map((f: any) => f.value), + features: tier.passwordManager.features.map((f: { key: string; value: string }) => f.value), }; }