()
| 48 | } |
| 49 | |
| 50 | async function hideMessage(): Promise<void> { |
| 51 | if (!(await state.get())) { |
| 52 | createMessageBox('Process completed in another tab'); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | async function onChoiceButtonClick({currentTarget: button}: React.MouseEvent<HTMLButtonElement>): Promise<void> { |
| 57 | const answer = button.value; |
nothing calls this directly
no test coverage detected