From 34e78a7054909018554bfad7552fab2ba6f0b7d1 Mon Sep 17 00:00:00 2001 From: Kelvin Calcano Date: Wed, 4 Feb 2026 16:26:03 -0400 Subject: [PATCH] style(cli): satisfy lint rules in extension path resolver --- src/cli/browser-cli-extension.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/cli/browser-cli-extension.ts b/src/cli/browser-cli-extension.ts index 735d2e57a..9c99d0763 100644 --- a/src/cli/browser-cli-extension.ts +++ b/src/cli/browser-cli-extension.ts @@ -27,9 +27,11 @@ function bundledExtensionRootDir() { path.resolve(here, "../../assets/chrome-extension"), ]; for (const candidate of candidates) { - if (hasManifest(candidate)) return candidate; + if (hasManifest(candidate)) { + return candidate; + } } - return candidates[0]!; + return candidates[0]; } function installedExtensionRootDir() {