To reproduce, visit any page with a playground on https://go.dev/tour: 1. Write something that will not compile, e.g., ``` golang package main // missing close quote import "fmt func main() { fmt.Println("Hello, World") } ``` 2. Click "Run". 3. Compilation error is reported, but the "Run" button is now stuck on "Kill" Expected behavior: After clicking "Run", the button should return to "Run" with a compilation error. 