From 0de6084b71ece195478f343bc54af40d45e09498 Mon Sep 17 00:00:00 2001 From: rdbsolutions Date: Wed, 20 Nov 2024 11:34:08 +0000 Subject: [PATCH] create pdf amendment --- actions/azurestorage.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/actions/azurestorage.js b/actions/azurestorage.js index 8a8997a6..bcbcc4eb 100644 --- a/actions/azurestorage.js +++ b/actions/azurestorage.js @@ -393,10 +393,7 @@ export const createAppealPDFBlob = async ( console.log("blobName:", blobName); const blockBlobClient = containerClient.getBlockBlobClient(blobName); - const uploadBlobResponse = await blockBlobClient.uploadStream( - content, - uploadOptions - ); + const uploadBlobResponse = await blockBlobClient.uploadStream(content); console.log(uploadBlobResponse); @@ -443,10 +440,7 @@ export const createRepPDFBlob = async ( console.log("blobName:", blobName); const blockBlobClient = containerClient.getBlockBlobClient(blobName); - const uploadBlobResponse = await blockBlobClient.uploadStream( - content, - uploadOptions - ); + const uploadBlobResponse = await blockBlobClient.uploadStream(content); let whichLocation = repName.indexOf("_IP_") > 0