1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-08 04:33:38 +00:00

fix(billing): allow for nullable taxId for families organizations

This commit is contained in:
Stephon Brown
2025-09-18 16:27:29 -04:00
parent 1ab9c947e7
commit 9e955aaf90

View File

@@ -45,9 +45,9 @@ class SecretsManager {
class TaxInformation {
postalCode: string;
country: string;
taxId: string;
taxId: string | null;
constructor(postalCode: string, country: string, taxId: string) {
constructor(postalCode: string, country: string, taxId: string | null) {
this.postalCode = postalCode;
this.country = country;
this.taxId = taxId;