()
| 440 | |
| 441 | // Reset auto typing after completion |
| 442 | const resetAutoTyping = () => { |
| 443 | setTimeout(() => { |
| 444 | setIsAutoTyping(false) |
| 445 | }, 10000) // Wait 10 seconds before possibly triggering another demo |
| 446 | } |
| 447 | |
| 448 | // Handle various input commands |
| 449 | const handleInput = async (input: string) => { |
no test coverage detected