Skip to content

Commit 41d93f3

Browse files
committed
Fix
1 parent 8f96d8c commit 41d93f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/core/src/core-server/dev-server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ export async function storybookDevServer(options: Options) {
192192
res.statusCode = 500;
193193
res.setHeader('Content-Type', 'text/html; charset=utf-8');
194194
invariant(e instanceof Error);
195-
res.end(`<pre>${e.toString()}\n${e.stack}</pre>`);
195+
res.end(`<pre>${e.stack}</pre>`);
196196
}
197197
});
198198
}

0 commit comments

Comments
 (0)