From 635c2318eb800f3bf6bc28fec2cd28327a3212c9 Mon Sep 17 00:00:00 2001 From: Marcos Candeia Date: Thu, 25 Jul 2024 10:35:26 -0300 Subject: [PATCH] Do not resolve loaders props Signed-off-by: Marcos Candeia --- website/sections/Rendering/Lazy.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/website/sections/Rendering/Lazy.tsx b/website/sections/Rendering/Lazy.tsx index a0688ad3f..69dfa1375 100644 --- a/website/sections/Rendering/Lazy.tsx +++ b/website/sections/Rendering/Lazy.tsx @@ -109,6 +109,9 @@ export const loader = async (props: Props, req: Request, ctx: AppContext) => { resolvingMatchers[id] = true; return resolve(id); } + if (resolver.type === "loaders") { + return {} as any; + } return resolve(); }, },