create pdf amendment
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user