diff --git a/src/components/CheckIn/TableRow.tsx b/src/components/CheckIn/TableRow.tsx index bbaf6986e5..6c0e6a4ff3 100644 --- a/src/components/CheckIn/TableRow.tsx +++ b/src/components/CheckIn/TableRow.tsx @@ -76,11 +76,8 @@ export const TableRow = ({ // Convert ArrayBuffer to Uint8Array before creating Blob const uint8Array = new Uint8Array(pdf.buffer); const blob = new Blob([uint8Array], { type: 'application/pdf' }); - // istanbul ignore next const url = URL.createObjectURL(blob); - // istanbul ignore next window.open(url); - // istanbul ignore next toast.success('PDF generated successfully!'); } catch (error: unknown) { const errorMessage =