TASK22269: prune touched azurestorage unused locals

This commit is contained in:
2026-03-26 11:17:09 +00:00
parent 427e1c4673
commit 361328c14a
2 changed files with 29 additions and 6 deletions
-6
View File
@@ -269,9 +269,6 @@ export const getBlobs = async (containerName, casefolderID) => {
})) {
const blobPathParts = blob.name.split("/");
const fileName = blobPathParts[2];
let blobDocumentType = blob.name
.split("/")[2]
.slice(0, blob.name.split("/")[2].indexOf("_"));
blobObj.push({
"name": fileName,
@@ -1479,9 +1476,6 @@ export const getRepsFilesBlobs = async (
const blobPathParts = blob.name.split("/");
const casefolderPath = blobPathParts[0] + "/" + blobPathParts[1];
const repFileName = blobPathParts[3];
let blobDocumentType = blob.name
.split("/")[2]
.slice(0, blob.name.split("/")[2].indexOf("_"));
consoleLogger(blob.name);