1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-12 14:34:02 +00:00
This commit is contained in:
Jonas Hendrickx
2024-11-20 11:32:54 +01:00
parent d786f50234
commit bfafdf7cc9
2 changed files with 12 additions and 1 deletions

View File

@@ -203,7 +203,12 @@ export class PremiumV2Component {
.then((invoice) => {
this.estimatedTax = invoice.taxAmount;
})
.catch(() => {
.catch((error) => {
this.toastService.showToast({
title: "",
variant: "error",
message: this.i18nService.t(error.message),
});
this.estimatedTax = 0;
});
}

View File

@@ -9123,6 +9123,12 @@
"billingTaxIdTypeInferenceError": {
"message": "We were unable to validate your tax ID, if you believe this is an error please contact support."
},
"billingPreviewInvalidTaxIdError": {
"message": "Invalid tax ID, if you believe this is an error please contact support."
},
"billingPreviewInvoiceError": {
"message": "An error occurred while previewing the invoice. Please try again later."
},
"unverified": {
"message": "Unverified"
},