frontend-plugin-api: AppRootElementBlueprint now only accepts an element

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2025-07-31 16:19:49 +02:00
parent 484e500f49
commit 121899a641
9 changed files with 25 additions and 11 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ export const alertDisplayAppRootElement =
},
factory: (originalFactory, { config }) => {
return originalFactory({
element: () => <AlertDisplay {...config} />,
element: <AlertDisplay {...config} />,
});
},
});