| 70 | } |
| 71 | |
| 72 | interface Props { |
| 73 | message: UIMessage | null; |
| 74 | userQuery?: string | null; |
| 75 | onOpenRef: (ref: WikiRef) => void; |
| 76 | onOpenNode: (node: FlowNodeData) => void; |
| 77 | streaming?: boolean; |
| 78 | } |
| 79 | |
| 80 | function FlowGraphInner({ message, userQuery, onOpenRef, onOpenNode, streaming }: Props) { |
| 81 | const t = useT(); |
nothing calls this directly
no outgoing calls
no test coverage detected