Remove the unused cache from the config

This commit is contained in:
Oliver 2026-03-28 18:42:48 -06:00
parent 9f19072426
commit 1892a02794

View file

@ -10,7 +10,6 @@ const components = [
];
export function registerCustomComponents() {
(CONFIG.CACHE ??= {}).componentListeners ??= [];
for (const component of components) {
if (!window.customElements.get(component.elementName)) {
Logger.debug(`Registering component "${component.elementName}"`);
@ -18,9 +17,6 @@ export function registerCustomComponents() {
component.elementName,
component,
);
if (component.formAssociated) {
CONFIG.CACHE.componentListeners.push(component.elementName);
}
};
}
};