Skip to content

Commit

Permalink
Do not resolve loaders props
Browse files Browse the repository at this point in the history
Signed-off-by: Marcos Candeia <[email protected]>
  • Loading branch information
mcandeia committed Jul 25, 2024
1 parent f863827 commit 32a6399
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions website/sections/Rendering/Lazy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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();
},
},
Expand Down

0 comments on commit 32a6399

Please sign in to comment.