♻️ refactor(deps): Update

This commit is contained in:
web@ppanel
2024-12-13 23:42:23 +07:00
parent 37d408f6bd
commit 19837a1032
23 changed files with 2746 additions and 2333 deletions
@@ -19,7 +19,7 @@ import GroupForm from './group-form';
const GroupTable = () => {
const t = useTranslations('subscribe');
const [loading, setLoading] = useState(false);
const ref = useRef<ProTableActions>();
const ref = useRef<ProTableActions>(null);
return (
<ProTable<API.SubscribeGroup, any>
@@ -33,7 +33,7 @@ export default function SubscribeTable() {
return data.data?.list as API.SubscribeGroup[];
},
});
const ref = useRef<ProTableActions>();
const ref = useRef<ProTableActions>(null);
return (
<ProTable<API.Subscribe, { group_id: number; query: string }>
action={ref}