IsAutoActionRunning returns true if any auto-action is currently in progress.
()
| 165 | |
| 166 | // IsAutoActionRunning returns true if any auto-action is currently in progress. |
| 167 | func (c *CompletionScreen) IsAutoActionRunning() bool { |
| 168 | return c.pushState == AutoActionInProgress || c.prState == AutoActionInProgress |
| 169 | } |
| 170 | |
| 171 | // Render renders the completion screen with confetti background. |
| 172 | func (c *CompletionScreen) Render() string { |
no outgoing calls