Change custom notes to not generate with the header logo.

This commit is contained in:
Skylar Grant 2026-03-18 10:04:27 -04:00
parent 89f47a7c25
commit c6d8be790e

View File

@ -1,7 +1,7 @@
/* ITS Thermal Receipt Printer
* Developed by Skylar Grant for MCCS ITS
*/
const version = "1.2.8";
const version = "1.2.9";
// #############################################################
// Variables
// #############################################################
@ -113,7 +113,7 @@ function customNoteHandler() {
// Generate the line array and PDF
const lineArray = prepCustomDetails(customNoteDetails);
const bUrl = generateFile(lineArray, true, false);
const bUrl = generateFile(lineArray, false, false);
displayPdf(bUrl);
}