From dfbdd429b54cd615230eff5cd88d7cb92b829296 Mon Sep 17 00:00:00 2001 From: Edward Ezekiel Date: Mon, 23 Jun 2025 10:47:51 -0500 Subject: [PATCH] fix: ensure url is correct on vscode terminal --- src/commands/scan/eol.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/scan/eol.ts b/src/commands/scan/eol.ts index 02bafdd2..7b50c80a 100644 --- a/src/commands/scan/eol.ts +++ b/src/commands/scan/eol.ts @@ -94,7 +94,7 @@ export default class ScanEol extends Command { const reportCardUrl = config.eolReportUrl; const url = ux.colorize( 'blue', - terminalLink(new URL(reportCardUrl).hostname, `${reportCardUrl}/${id}`, { fallback: (url) => url }), + terminalLink(new URL(reportCardUrl).hostname, `${reportCardUrl}/${id}`, { fallback: (_, url) => url }), ); this.log(`🌐 View your full EOL report at: ${url}\n`); }