11import { Layout as DashboardLayout } from "/src/layouts/index.js" ;
22import { CippTablePage } from "/src/components/CippComponents/CippTablePage.jsx" ;
33import { useEffect , useState } from "react" ;
4- import { Dialog , DialogTitle , DialogContent , IconButton , Skeleton } from "@mui/material" ;
4+ import { Dialog , DialogTitle , DialogContent , IconButton , Skeleton , Typography , CircularProgress } from "@mui/material" ;
55import { Block , Close , Done , DoneAll , Subject } from "@mui/icons-material" ;
66import { CippMessageViewer } from "/src/components/CippComponents/CippMessageViewer.jsx" ;
77import { ApiGetCall , ApiPostCall } from "/src/api/ApiCall" ;
@@ -96,8 +96,7 @@ const Page = () => {
9696 type : "POST" ,
9797 url : "/api/ExecQuarantineManagement" ,
9898 data : {
99- TenantFilter : "TenantFilter" ,
100- ID : "id" ,
99+ Identity : "Identity" ,
101100 Type : "Release" ,
102101 } ,
103102 confirmText : "Are you sure you want to release this message?" ,
@@ -108,8 +107,7 @@ const Page = () => {
108107 type : "POST" ,
109108 url : "/api/ExecQuarantineManagement" ,
110109 data : {
111- TenantFilter : "TenantFilter" ,
112- ID : "id" ,
110+ Identity : "Identity" ,
113111 Type : "Deny" ,
114112 } ,
115113 confirmText : "Are you sure you want to deny this message?" ,
@@ -120,8 +118,7 @@ const Page = () => {
120118 type : "POST" ,
121119 url : "/api/ExecQuarantineManagement" ,
122120 data : {
123- TenantFilter : "TenantFilter" ,
124- ID : "id" ,
121+ Identity : "Identity" ,
125122 Type : "Release" ,
126123 AllowSender : true ,
127124 } ,
0 commit comments