Reduces number of copies
This commit is contained in:
parent
3e1984c246
commit
d205efcd1f
|
@ -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}`;
|
||||||
|
|
Loading…
Reference in New Issue