| 184 | } |
| 185 | |
| 186 | interface Message { |
| 187 | id: string; |
| 188 | role: "user" | "ai"; |
| 189 | content: string; |
| 190 | done: boolean; |
| 191 | } |
| 192 | |
| 193 | function settleScrollBottom( |
| 194 | container: HTMLElement | null, |
nothing calls this directly
no outgoing calls
no test coverage detected