Reduces number of copies

This commit is contained in:
Aaron Louie 2020-09-10 15:50:44 -04:00
parent 3e1984c246
commit d205efcd1f
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ const _save = (props: PrintingProps): Promise<void> => {
} }
const _print = async (props: PrintingProps): Promise<void> => { const _print = async (props: PrintingProps): Promise<void> => {
const numCopies = 50; // Number of copies to print const numCopies = 2; // Number of copies to print
const units = 'mm'; const units = 'mm';
const pageSize = 28.6; const pageSize = 28.6;
const pageWidth = `${pageSize}${units}`; const pageWidth = `${pageSize}${units}`;