From 1c556cd64251fa299e2815860a8f86d03e3bad39 Mon Sep 17 00:00:00 2001 From: Thijs Louisse Date: Tue, 21 May 2024 15:40:16 +0200 Subject: [PATCH] Apply suggestions from code review --- packages/ui/components/core/src/SlotMixin.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/ui/components/core/src/SlotMixin.js b/packages/ui/components/core/src/SlotMixin.js index 999ec7c48..4704c829a 100644 --- a/packages/ui/components/core/src/SlotMixin.js +++ b/packages/ui/components/core/src/SlotMixin.js @@ -134,6 +134,7 @@ const SlotMixinImplementation = superclass => const hasShadowRoot = Boolean(this.shadowRoot); if (!hasShadowRoot) { // TODO: throw an error in a breaking release + // eslint-disable no-console console.error(`[SlotMixin] No shadowRoot was found`); } const registryRoot = supportsScopedRegistry ? this.shadowRoot : document;