更新 修复类型

This commit is contained in:
moux1024 2025-09-23 14:21:03 +08:00
parent 786c6e6a81
commit 1056e5fc8e

View File

@ -151,7 +151,7 @@ export default function SharePage(): JSX.Element {
const toggleRow = React.useCallback((id: string) => {
setExpandedRowIds((prev: any) => {
setExpandedRowIds((prev: Set<string>) => {
const next = new Set(prev);
if (next.has(id)) {
next.delete(id);