enter image description here
you can see the image what is issuse
here is function that download pdf :-
const handleGeneratePdf = () => {
const doc = new jsPDF({
format: "a1",
unit: "px",
orientation: "p",
putOnlyUsedFonts: true,
});
// Adding the fonts
doc.setFont("Inter-Regular", "normal");
doc.html(reportTemplateRef.current, {
async callback(doc) {
await doc.save("document");
},
});
};
Kindly solve this issue