Is it a bug or I am missing something?  I'm using jsPDF CLI and here is what I have done ``` const addNote = (notes) => { let doc = new jsPDF(); // doc.setFontSize() doc.text(10, 10, notes, 10,10); doc.save('notes.pdf') } ```