From 4b93e8fe0e15df6a90fda6df1ebadaec02a0456a Mon Sep 17 00:00:00 2001 From: Osvaldo Ortega Date: Mon, 2 Mar 2026 18:54:51 -0800 Subject: [PATCH] Fix: update open function call to use default export for URL opening --- scripts/code-sessions-web.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/code-sessions-web.js b/scripts/code-sessions-web.js index 06396ced75e..e776faf7d9c 100644 --- a/scripts/code-sessions-web.js +++ b/scripts/code-sessions-web.js @@ -83,7 +83,7 @@ async function main() { server.listen(PORT, HOST, () => { console.log(`\n Sessions Web running at: http://${HOST}:${PORT}/\n`); if (!args['no-open']) { - open(`http://${HOST}:${PORT}/`); + open.default(`http://${HOST}:${PORT}/`); } });