From 052d771748f1120ea0acec8ea24144797f9c3e73 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Mon, 9 May 2022 22:05:47 -0700 Subject: [PATCH] lint --- tabby-terminal/src/api/baseTerminalTab.component.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tabby-terminal/src/api/baseTerminalTab.component.ts b/tabby-terminal/src/api/baseTerminalTab.component.ts index 58dc51ae..e04587b9 100644 --- a/tabby-terminal/src/api/baseTerminalTab.component.ts +++ b/tabby-terminal/src/api/baseTerminalTab.component.ts @@ -374,14 +374,14 @@ export class BaseTerminalTabComponent extends BaseTabComponent implements OnInit }) } - protected async onFrontendReady (): Promise { + protected onFrontendReady (): void { this.frontendIsReady = true if (this.savedState) { this.frontend!.restoreState(this.savedState) if (!this.savedStateIsLive) { - await this.frontend!.write('\r\n\r\n') - await this.frontend!.write(colors.bgWhite.black(' * ') + colors.bgBlackBright.white(' History restored ')) - await this.frontend!.write('\r\n\r\n') + this.frontend!.write('\r\n\r\n') + this.frontend!.write(colors.bgWhite.black(' * ') + colors.bgBlackBright.white(' History restored ')) + this.frontend!.write('\r\n\r\n') } } }