Skip to content

Commit 4b35ed9

Browse files
authored
fix: ensure url is correct on vscode terminal (#264)
1 parent a075057 commit 4b35ed9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/scan/eol.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export default class ScanEol extends Command {
9494
const reportCardUrl = config.eolReportUrl;
9595
const url = ux.colorize(
9696
'blue',
97-
terminalLink(new URL(reportCardUrl).hostname, `${reportCardUrl}/${id}`, { fallback: (url) => url }),
97+
terminalLink(new URL(reportCardUrl).hostname, `${reportCardUrl}/${id}`, { fallback: (_, url) => url }),
9898
);
9999
this.log(`🌐 View your full EOL report at: ${url}\n`);
100100
}

0 commit comments

Comments
 (0)