added key to top three row for appeal sunbmission card

This commit is contained in:
2024-03-05 10:48:25 +00:00
parent 3ede3985b4
commit e99a0263af
4 changed files with 201 additions and 189 deletions
+3 -5
View File
@@ -1465,8 +1465,7 @@ export const getFilesFromBlobHashed = (
) => {
return axios
.get(
BASE_URL +
"/api/file/getbloblist?container=" +
"/api/file/getbloblist?container=" +
containerName +
"&casefolderID=" +
casefolderID +
@@ -1489,8 +1488,7 @@ export const deleteBlob = async (
) => {
try {
const res = await axios.get(
BASE_URL +
"/api/file/deleteblob?container=" +
"/api/file/deleteblob?container=" +
containerName +
"&casefolderID=" +
casefolderID +
@@ -1664,7 +1662,7 @@ export const sendCaseCompleteMessage = async (containerID, caseReference) => {
return res.data;
})
.catch((error) => {
//console.log("API call error", error);
consoleLogger(error);
});
};