Skip to content

Commit 4c6f45e

Browse files
committed
Remove optional chaining
1 parent 1f5daa8 commit 4c6f45e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli/scripts/start.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ module.exports = async function (argv, config, cliInfo) {
305305
result.error.errorType + ":",
306306
result.error.errorMessage,
307307
"\n",
308-
result.error.stackTrace?.join("\n")
308+
(result.error.stackTrace || []).join("\n")
309309
);
310310
return {
311311
type: "failure",

0 commit comments

Comments
 (0)