♻️ refactor(deps): Update
This commit is contained in:
@@ -19,7 +19,7 @@ import GroupForm from './group-form';
|
||||
export default function GroupTable() {
|
||||
const t = useTranslations('server');
|
||||
const [loading, setLoading] = useState(false);
|
||||
const ref = useRef<ProTableActions>();
|
||||
const ref = useRef<ProTableActions>(null);
|
||||
|
||||
return (
|
||||
<ProTable<API.ServerGroup, any>
|
||||
|
||||
@@ -36,7 +36,7 @@ export default function NodeTable() {
|
||||
},
|
||||
});
|
||||
|
||||
const ref = useRef<ProTableActions>();
|
||||
const ref = useRef<ProTableActions>(null);
|
||||
|
||||
return (
|
||||
<ProTable<API.Server, { groupId: number; search: string }>
|
||||
|
||||
Reference in New Issue
Block a user