()
| 1867 | } |
| 1868 | |
| 1869 | private renderWelcome(): void { |
| 1870 | if ( |
| 1871 | this.state.transcriptContainer.children.some((child) => child instanceof WelcomeComponent) |
| 1872 | ) { |
| 1873 | return; |
| 1874 | } |
| 1875 | const welcome = new WelcomeComponent(this.state.appState); |
| 1876 | this.state.transcriptContainer.addChild(welcome); |
| 1877 | } |
| 1878 | |
| 1879 | private clearTerminalInlineImages(): void { |
| 1880 | if (getCapabilities().images !== 'kitty') return; |
no test coverage detected