Skip to content

Commit

Permalink
Remove unused _observerFallback
Browse files Browse the repository at this point in the history
  • Loading branch information
wendevlin committed Nov 20, 2024
1 parent 8ad6873 commit 9106d26
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions landing-page/src/components/landing-page-logs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ class LandingPageLogs extends LitElement {

@state() private _logLinesCount = 0;

@state() private _observerFallback = false;

protected render() {
return html`
<div class="actions">
Expand Down Expand Up @@ -187,7 +185,6 @@ class LandingPageLogs extends LitElement {
}

private async _startLogStream() {
this._observerFallback = false;
this._error = false;
this._newLogsIndicator = false;
this._ansiToHtmlElement?.clear();
Expand Down Expand Up @@ -220,7 +217,6 @@ class LandingPageLogs extends LitElement {
console.error(err);

// fallback to observerlogs if there is a problem with supervisor
this._observerFallback = true;
this._loadObserverLogs();
}
}
Expand Down

0 comments on commit 9106d26

Please sign in to comment.