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