mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 17:30:31 +00:00
Fix prefer-optional-chain lint
This commit is contained in:
parent
4b8d5da750
commit
0bcb6512b6
1 changed files with 1 additions and 1 deletions
|
|
@ -165,7 +165,7 @@ export class AppServerClient {
|
|||
}
|
||||
|
||||
isConnected(): boolean {
|
||||
return this.initialized && this.transport !== null && this.transport.isRunning();
|
||||
return this.initialized && this.transport?.isRunning() === true;
|
||||
}
|
||||
|
||||
get initializeResponse(): InitializeResponse {
|
||||
|
|
|
|||
Loading…
Reference in a new issue