diff --git a/website/sections/Rendering/Lazy.tsx b/website/sections/Rendering/Lazy.tsx index a0688ad3f..fcdd59908 100644 --- a/website/sections/Rendering/Lazy.tsx +++ b/website/sections/Rendering/Lazy.tsx @@ -109,6 +109,10 @@ export const loader = async (props: Props, req: Request, ctx: AppContext) => { resolvingMatchers[id] = true; return resolve(id); } + if (resolver.type === "loaders") { + // deno-lint-ignore no-explicit-any + return undefined as any; + } return resolve(); }, },