(prev)
| 542 | return <Text key={task_0.id} color={task_0.status === "completed" ? "success" : undefined}>{task_0.status === "completed" ? figures.tick : "\u25FC"}{" "}{task_0.subject}</Text>; |
| 543 | } |
| 544 | function _temp(prev) { |
| 545 | return !prev; |
| 546 | } |
| 547 | async function killTeammate(paneId: string, backendType: PaneBackendType | undefined, teamName: string, teammateId: string, teammateName: string, setAppState: (f: (prev: AppState) => AppState) => void): Promise<void> { |
| 548 | // Kill the pane using the backend that created it (handles -s / -L flags correctly). |
| 549 | // Wrapped in try/catch so cleanup (removeMemberFromTeam, unassignTeammateTasks, |
nothing calls this directly
no outgoing calls
no test coverage detected