fix(app): remove unused func
All checks were successful
Deploy to GitHub Pages / build_site (push) Successful in 2m7s

This commit is contained in:
2026-01-19 14:24:47 +01:00
parent 11de746c01
commit 450262b4ae

View File

@@ -43,13 +43,17 @@
); );
$effect(() => { $effect(() => {
workerRuntime.useRegistryCache =
appSettings.value.debug.cache.useRuntimeCache;
workerRuntime.useRuntimeCache =
appSettings.value.debug.cache.useRegistryCache;
if (appSettings.value.debug.cache.useRegistryCache) { if (appSettings.value.debug.cache.useRegistryCache) {
nodeRegistry.cache = registryCache; nodeRegistry.cache = registryCache;
} else { } else {
nodeRegistry.cache = undefined; nodeRegistry.cache = undefined;
} }
workerRuntime.setUseCache(appSettings.value.debug.cache.useRuntimeCache);
if (appSettings.value.debug.cache.useRuntimeCache) { if (appSettings.value.debug.cache.useRuntimeCache) {
memoryRuntime.cache = runtimeCache; memoryRuntime.cache = runtimeCache;
} else { } else {