| 15 | import type { LoadPlan, LoadPlanCandidate, PendingTableLoad } from './ComponentType'; |
| 16 | |
| 17 | interface LoadPlanCardProps { |
| 18 | plan: LoadPlan; |
| 19 | onConfirm: (selected: LoadPlanCandidate[]) => void; |
| 20 | confirmed?: boolean; |
| 21 | } |
| 22 | |
| 23 | // Plans this small auto-expand each row's preview on first render so the |
| 24 | // user can see what they're loading without an extra click. Larger plans |
nothing calls this directly
no outgoing calls
no test coverage detected