Skip to content

Commit

Permalink
fix: [M3-8408] - Change of heading from "Invoice" to "Tax Invoice" fo…
Browse files Browse the repository at this point in the history
…r UAE customers (#11097)

* fix: [M3-8408] - Change of heading from "Invoice" to "Tax Invoice" for UAE customers

* Added changeset: Change of Heading from Invoice to Tax Invoice for UAE Customers

* Change Changeset Description

Co-authored-by: Purvesh Makode <pmakode@akamai.com>

* Change Changeset Type

Co-authored-by: Purvesh Makode <pmakode@akamai.com>

---------

Co-authored-by: Purvesh Makode <pmakode@akamai.com>
  • Loading branch information
hasyed-akamai and pmakode-akamai authored Oct 17, 2024
1 parent 8ce11fe commit e91cafe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions packages/manager/.changeset/pr-11097-fixed-1728926799806.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Changed
---

Invoice heading from 'Invoice' to 'Tax Invoice' for UAE Customers ([#11097](https://github.com/linode/manager/pull/11097))
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,10 @@ export const printInvoice = async (
doc,
Math.max(leftHeaderYPosition, rightHeaderYPosition) + 12,
{
text: `Invoice: #${invoiceId}`,
text:
account.country === 'AE'
? `Tax Invoice: #${invoiceId}`
: `Invoice: #${invoiceId}`,
}
);

Expand Down

0 comments on commit e91cafe

Please sign in to comment.