From 6234d914f6acb3582c85f17201473b943ab6cf44 Mon Sep 17 00:00:00 2001 From: Ruben van der Linde Date: Tue, 19 May 2026 18:46:20 +0200 Subject: [PATCH] fix(quality): wire registryProp to App render so no-unused-vars passes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `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 https://github.com/ConductionNL/hydra/issues/307 --- src/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.js b/src/main.js index a45142e6..4365cf60 100644 --- a/src/main.js +++ b/src/main.js @@ -108,6 +108,7 @@ new Vue({ manifest: manifestRef.value, customComponents: customComponentsProp, pageTypes: pageTypesProp, + registry: registryProp, }, }) },