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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user