|
|
@@ -5,7 +5,6 @@ import { |
|
|
|
} from '@mui/material'; |
|
|
|
import { useEffect, useState, lazy } from "react"; |
|
|
|
import axios from "axios"; |
|
|
|
import { apiPath } from "auth/utils"; |
|
|
|
import { useParams } from "react-router-dom"; |
|
|
|
import { |
|
|
|
GeneralConfirmWindow, |
|
|
@@ -64,7 +63,7 @@ const UserMaintainPage = () => { |
|
|
|
}; |
|
|
|
|
|
|
|
function deleteData() { |
|
|
|
axios.delete(`${apiPath}${GET_GROUP_LIST_PATH}/${params.id}`, |
|
|
|
axios.delete(`${GET_GROUP_LIST_PATH}/${params.id}`, |
|
|
|
) |
|
|
|
.then((response) => { |
|
|
|
if (response.status === 204) { |
|
|
|