remove a line

pull/17350/head
Elliott Johnson 1 week ago
parent d711ab2f47
commit 0682e5bda8

@ -64,9 +64,8 @@ export async function init_render_context() {
if (als !== null) return;
try {
// @ts-ignore -- we don't include node types in the production build
als_import ??= import('node:async_hooks').then((mod) => {
const { AsyncLocalStorage } = mod;
als = new AsyncLocalStorage();
als_import ??= import('node:async_hooks').then((hooks) => {
als = new hooks.AsyncLocalStorage();
});
await als_import;
} catch {}

Loading…
Cancel
Save