From 9b641363cc84046e4f176c1a05aacc1ebf6fc733 Mon Sep 17 00:00:00 2001 From: Abdullah bin Kasim Date: Wed, 11 Oct 2023 14:39:02 +0800 Subject: [PATCH] Lint fixes --- src/commands/phpmyadmin.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/commands/phpmyadmin.ts b/src/commands/phpmyadmin.ts index bacd9e98d3..a12a092ba7 100644 --- a/src/commands/phpmyadmin.ts +++ b/src/commands/phpmyadmin.ts @@ -75,8 +75,7 @@ export class PhpMyAdminCommand { this.log( 'Generating PhpMyAdmin URL...' ); const url = await generatePhpMyAdminAccess( this.env.id ); - // eslint-disable-next-line @typescript-eslint/no-unsafe-call - opn( url, { wait: false } ); + void opn( url, { wait: false } ); this.log( 'Switch to your default browser.' ); }