diff --git a/app/src/routes/+page.svelte b/app/src/routes/+page.svelte index 8944801..331cce1 100644 --- a/app/src/routes/+page.svelte +++ b/app/src/routes/+page.svelte @@ -32,10 +32,7 @@ let performanceStore = createPerformanceStore(); const registryCache = new IndexDBCache("node-registry"); - const nodeRegistry = new RemoteNodeRegistry( - "https://node-store.app.max-richter.dev", - registryCache, - ); + const nodeRegistry = new RemoteNodeRegistry("", registryCache); const workerRuntime = new WorkerRuntimeExecutor(); const runtimeCache = new MemoryRuntimeCache(); const memoryRuntime = new MemoryRuntimeExecutor(nodeRegistry, runtimeCache);