Update dependencies and refactor icon imports across the codebase

This commit is contained in:
Amruth Pillai
2025-10-01 10:38:50 +02:00
parent c525f8d2cc
commit 6d37769e38
72 changed files with 6496 additions and 5107 deletions

View File

@ -62,7 +62,7 @@ export class PrinterService {
},
});
const duration = Number(performance.now() - start).toFixed(0);
const duration = +(performance.now() - start).toFixed(0);
const numberPages = resume.data.metadata.layout.length;
this.logger.debug(`Chrome took ${duration}ms to print ${numberPages} page(s)`);
@ -83,7 +83,7 @@ export class PrinterService {
},
});
const duration = Number(performance.now() - start).toFixed(0);
const duration = +(performance.now() - start).toFixed(0);
this.logger.debug(`Chrome took ${duration}ms to generate preview`);