From 984a641b902c075411cbfe76095402fa5dbc4eeb Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Mon, 2 Mar 2026 18:02:29 +0100 Subject: [PATCH] fix(ci): remove headerIcon from AgbsPDF to resolve TS2741 --- apps/web/src/components/AgbsPDF.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/apps/web/src/components/AgbsPDF.tsx b/apps/web/src/components/AgbsPDF.tsx index 3a27790..9376944 100644 --- a/apps/web/src/components/AgbsPDF.tsx +++ b/apps/web/src/components/AgbsPDF.tsx @@ -70,16 +70,11 @@ const AGBSection = ({ ); interface AgbsPDFProps { - headerIcon?: string; footerLogo?: string; mode?: "estimation" | "full"; } -export const AgbsPDF = ({ - headerIcon, - footerLogo, - mode = "full", -}: AgbsPDFProps) => { +export const AgbsPDF = ({ footerLogo, mode = "full" }: AgbsPDFProps) => { const date = new Date().toLocaleDateString("de-DE", { year: "numeric", month: "long", @@ -226,7 +221,6 @@ export const AgbsPDF = ({