chore: removed console.logs and warn

This commit is contained in:
Catalin Pit
2023-09-04 16:08:22 +03:00
committed by Mythie
parent 4146d71f9d
commit d1db20ff4a
3 changed files with 0 additions and 34 deletions

View File

@ -86,7 +86,6 @@ export const completeDocumentWithToken = async ({
console.log('documents', documents);
if (documents.count > 0) {
console.log('sealing document');
await sealDocument({ documentId: document.id });
}
};

View File

@ -53,10 +53,6 @@ export const sealDocument = async ({ documentId }: SealDocumentOptions) => {
const doc = await PDFDocument.load(pdfData);
for (const field of fields) {
console.log('inserting field', {
...field,
Signature: null,
});
await insertFieldInPDF(doc, field);
}