(key: number)
| 534 | } |
| 535 | |
| 536 | async function jumpToConversation(key: number): Promise<void> { |
| 537 | const index = key - 1; |
| 538 | await selectConversation(index); |
| 539 | } |
| 540 | |
| 541 | // Focus on the conversation with the given index |
| 542 | async function selectConversation(index: number): Promise<void> { |
no test coverage detected