(pageName: string, container: HTMLElement, err: unknown)
| 123 | } |
| 124 | |
| 125 | function showErrorFallback(pageName: string, container: HTMLElement, err: unknown): void { |
| 126 | const message = err instanceof Error ? err.message : String(err); |
| 127 | render(html` |
| 128 | <div class="error-boundary"> |
| 129 | <h3>\u26a0\ufe0f Failed to render ${pageName}</h3> |
| 130 | <p class="error-message">${message}</p> |
| 131 | <p class="error-hint">Try reloading the dashboard (Ctrl+Shift+P \u2192 "AI Engineer Coach: Reload Data")</p> |
| 132 | </div>`, container); |
| 133 | } |
no test coverage detected