(data: SessionData, subagent: SubagentData, order: Map<string, number>)
| 302 | } |
| 303 | |
| 304 | function pickView(data: SessionData, subagent: SubagentData, order: Map<string, number>): FooterView { |
| 305 | return pickBlockerView({ |
| 306 | permission: firstByOrder(data.permissions, listSubagentPermissions(subagent), order), |
| 307 | question: firstByOrder(data.questions, listSubagentQuestions(subagent), order), |
| 308 | }) |
| 309 | } |
| 310 | |
| 311 | function composeFooter(input: { |
| 312 | patch?: FooterPatch |
no test coverage detected