From 22b486f56ae3f3ac2bb25c15ef01c7e9cd5e4c65 Mon Sep 17 00:00:00 2001 From: Mirco Wittrien Date: Sat, 1 Oct 2022 12:26:48 +0200 Subject: [PATCH] Update 0BDFDB.plugin.js --- Library/0BDFDB.plugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/0BDFDB.plugin.js b/Library/0BDFDB.plugin.js index ce65924a5b..0d720607fe 100644 --- a/Library/0BDFDB.plugin.js +++ b/Library/0BDFDB.plugin.js @@ -8084,7 +8084,7 @@ module.exports = (_ => { Internal.NativeSubComponents = new Proxy(NativeSubComponents, { get: function (_, item) { if (NativeSubComponents[item]) return NativeSubComponents[item]; - if (!InternalData.NativeSubComponents[item] && !CustomComponents[item]) return "div"; + if (!InternalData.NativeSubComponents[item]) return "div"; let defaultExport = typeof InternalData.NativeSubComponents[item].exported != "boolean" ? true : InternalData.NativeSubComponents[item].exported; if (InternalData.NativeSubComponents[item].props) NativeSubComponents[item] = BDFDB.ModuleUtils.findByProperties(InternalData.NativeSubComponents[item].props, {defaultExport});