From 07928a182f66ce3e1b124c83b20ac5a5db5b67a8 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Sun, 1 Mar 2026 09:30:52 +0100 Subject: [PATCH] fix(ci): fulfill strict bankData typing requirement on LocalEstimationPDF components to clear QA pipeline --- .../src/components/ContactForm/pdf/LocalEstimationPDF.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/web/src/components/ContactForm/pdf/LocalEstimationPDF.tsx b/apps/web/src/components/ContactForm/pdf/LocalEstimationPDF.tsx index 90a1bf7..6399aab 100644 --- a/apps/web/src/components/ContactForm/pdf/LocalEstimationPDF.tsx +++ b/apps/web/src/components/ContactForm/pdf/LocalEstimationPDF.tsx @@ -77,10 +77,17 @@ export const LocalEstimationPDF = ({ ustId: "DE367588065", }; + const bankData = { + name: "N26", + bic: "NTSBDEB1XXX", + iban: "DE50 1001 1001 2620 4328 65", + }; + const commonProps = { headerIcon: headerIcon, footerLogo, companyData, + bankData, }; let pageCounter = 1;