Component Bundler Bugfix

This commit is contained in:
2026-04-04 20:30:40 +01:00
parent 1037bbb546
commit 5166ba037f
8 changed files with 118 additions and 91 deletions
@@ -12,7 +12,7 @@ export default async function grabPageBundledReactComponent({ file_path, root_fi
if (!tsx) {
return undefined;
}
const mod = await grabTsxStringModule({ tsx, file_path });
const mod = await grabTsxStringModule({ tsx });
const Main = mod.default;
const component = _jsx(Main, {});
return {