移除 console

This commit is contained in:
whyour 2023-02-02 13:20:47 +08:00
parent 4a18bcabe2
commit 9479c2498c
2 changed files with 0 additions and 2 deletions

View File

@ -167,7 +167,6 @@ const ViewManageModal = ({
}; };
const onShowChange = (checked: boolean, record: any, index: number) => { const onShowChange = (checked: boolean, record: any, index: number) => {
console.log(checked);
request request
.put(`${config.apiPrefix}crons/views/${checked ? 'enable' : 'disable'}`, { .put(`${config.apiPrefix}crons/views/${checked ? 'enable' : 'disable'}`, {
data: [record.id], data: [record.id],

View File

@ -12,7 +12,6 @@ const RenameModal = ({
visible: boolean; visible: boolean;
handleCancel: () => void; handleCancel: () => void;
}) => { }) => {
console.log(currentNode);
const [form] = Form.useForm(); const [form] = Form.useForm();
const [loading, setLoading] = useState(false); const [loading, setLoading] = useState(false);