Reduces number of copies

This commit is contained in:
Aaron Louie 2020-09-10 15:50:44 -04:00
parent f49337402a
commit 53369bb0a4
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 numCopies = 50; // Number of copies to print
const numCopies = 2; // Number of copies to print
const units = 'mm';
const pageSize = 28.6;
const pageWidth = `${pageSize}${units}`;