From 6644727cf1692e26a5da684a7ba2802a017db262 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Wed, 6 May 2026 21:25:26 -0500 Subject: [PATCH] fix config change not triggering signal --- src/app/services/config.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/app/services/config.ts b/src/app/services/config.ts index 6db29e5..d78567e 100644 --- a/src/app/services/config.ts +++ b/src/app/services/config.ts @@ -131,9 +131,6 @@ export class ConfigService { return; } - if (isEqual(modules, currentConfig.modules)) { - return; - } this.currentlyShownConfig.set({ ...currentConfig, modules: modules, @@ -147,9 +144,6 @@ export class ConfigService { return; } - if (isEqual(routes, currentConfig.routes)) { - return; - } this.currentlyShownConfig.set({ ...currentConfig, routes: routes,