diff --git a/7project/frontend/src/pages/Dashboard.tsx b/7project/frontend/src/pages/Dashboard.tsx index c81c876..e45bc41 100644 --- a/7project/frontend/src/pages/Dashboard.tsx +++ b/7project/frontend/src/pages/Dashboard.tsx @@ -487,7 +487,6 @@ export default function Dashboard({ onLogout }: { onLogout: () => void }) { type="checkbox" aria-label="Select all on page" checked={visible.length > 0 && visible.every(v => selectedTxIds.includes(v.id))} - indeterminate={(visible.some(v => selectedTxIds.includes(v.id)) && !visible.every(v => selectedTxIds.includes(v.id))) as any} onChange={(e) => { if (e.currentTarget.checked) { selectAllVisible(visible.map(v => v.id));