We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 985f346 commit fe1bd43Copy full SHA for fe1bd43
packages/vike-solid/integration/getPageElement.tsx
@@ -23,12 +23,14 @@ function Wrapper(props: { children: JSX.Element }) {
23
24
createComputed(() => {
25
setWrappers(
26
- reconcile([
27
- // Inner wrapping
28
- ...(pageContext.config.Layout || []),
29
- // Outer wrapping
30
- ...(pageContext.config.Wrapper || []),
31
- ].reverse()),
+ reconcile(
+ [
+ // Inner wrapping
+ ...(pageContext.config.Layout || []),
+ // Outer wrapping
+ ...(pageContext.config.Wrapper || []),
32
+ ].reverse(),
33
+ ),
34
);
35
});
36
0 commit comments