```javascript if (temp.isEnabled("foo")) { button.className = "cool"; button.textContent = "Cool Button"; } else { button.className = "lame"; button.textContent = "Lame Button"; } ``` We will always run the "cool" path here, because I didn't put an await on the isEnabled call. I think this is bad.