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 635c231
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions website/sections/Rendering/Lazy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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();
},
},
Expand Down

0 comments on commit 635c231

Please sign in to comment.