Skip to content

Commit 4704951

Browse files
authored
fix(quality): wire registryProp to App render so no-unused-vars passes (#269)
`registryProp` was declared but never passed to `App` in the render function, causing the single ESLint `no-unused-vars` failure on the quality CI job. Adds `registry: registryProp` to the render props so the v2 component registry (registry.js) is actually forwarded to CnAppRoot — matching the pattern used by procest/mydash. Fixes ConductionNL/hydra#307
1 parent c88e205 commit 4704951

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/main.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ new Vue({
108108
manifest: manifestRef.value,
109109
customComponents: customComponentsProp,
110110
pageTypes: pageTypesProp,
111+
registry: registryProp,
111112
},
112113
})
113114
},

0 commit comments

Comments
 (0)