authscape 1.0.478 → 1.0.482

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -8770,7 +8770,7 @@ var TicketDetail = function TicketDetail(_ref) {
8770
8770
  case 0:
8771
8771
  _context7.next = 2;
8772
8772
  return apiService().put("/ticket/UpdateParticipants", {
8773
- ticketId: router.query.id,
8773
+ ticketId: ticketId,
8774
8774
  participants: newValue
8775
8775
  });
8776
8776
  case 2:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "authscape",
3
- "version": "1.0.478",
3
+ "version": "1.0.482",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -32,7 +32,6 @@ export const TicketDetail = ({ticketId, setIsLoading, currentUser, GoBackToViewT
32
32
  const [createdByList, setCreatedByList] = useState([]);
33
33
  const [selectedCreatedBy, setSelectedCreatedBy] = useState(null);
34
34
 
35
-
36
35
  useEffect(() => {
37
36
 
38
37
  const fetchData = async () => {
@@ -296,7 +295,7 @@ export const TicketDetail = ({ticketId, setIsLoading, currentUser, GoBackToViewT
296
295
  // alert(JSON.stringify(newValue));
297
296
 
298
297
  await apiService().put("/ticket/UpdateParticipants", {
299
- ticketId: router.query.id,
298
+ ticketId: ticketId,
300
299
  participants: newValue
301
300
  });
302
301