chore: remove console.logs

This commit is contained in:
Ephraim Atta-Duncan
2024-01-28 18:05:17 +00:00
parent 857e35c10a
commit 144bd4782b
2 changed files with 0 additions and 3 deletions

View File

@ -69,8 +69,6 @@ export const sealDocument = async ({ documentId, sendEmail = true }: SealDocumen
const doc = await PDFDocument.load(pdfData);
console.log('Fields to insert into PDF: ', fields);
for (const field of fields) {
await insertFieldInPDF(doc, field);
}

View File

@ -238,7 +238,6 @@ export const documentRouter = router({
userId: ctx.user.id,
});
} catch (err) {
console.log(err);
throw new TRPCError({
code: 'BAD_REQUEST',
message: 'We are unable to duplicate this document. Please try again later.',