Skip to content

Commit b99259f

Browse files
John McCambridgenol166
John McCambridge
authored andcommitted
Rename variable, change let to const
1 parent c80cf46 commit b99259f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/server/src/cli.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,8 @@ const bold = (text: string | number): string | number => {
314314
logger.info("Telemetry is disabled");
315315
}
316316

317-
let schema = options.allowHttp ? "http" : "https";
318-
const url = `${schema}://localhost:${options.port}/`;
317+
const protocol = options.allowHttp ? "http" : "https";
318+
const url = `${protocol}://localhost:${options.port}/`;
319319
logger.info(" ");
320320
logger.info("Started (click the link below to open):");
321321
logger.info(url);

0 commit comments

Comments
 (0)