fix(home): restore CI by fixing loader and exposing widget dataRef

Signed-off-by: Adam Kunicki <kunickiaj@gmail.com>
This commit is contained in:
Adam Kunicki
2026-01-29 18:48:19 -08:00
parent d79fb2f65d
commit e7e9fc6386
3 changed files with 14 additions and 5 deletions
+4 -4
View File
@@ -62,10 +62,10 @@ const homePage = PageBlueprint.makeWithOverrides({
routeRef: rootRouteRef,
loader: () =>
import('./components/').then(m => (
<m.HomepageCompositionRoot
children={inputs.props?.get(coreExtensionData.reactElement)}
title={inputs.props?.get(coreExtensionData.title)}
/>,
<m.HomepageCompositionRoot
children={inputs.props?.get(coreExtensionData.reactElement)}
title={inputs.props?.get(coreExtensionData.title)}
/>
)),
});
},