From 2c9bda7301745e733b5197c5289f158b4d38e7e7 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Tue, 25 Jul 2023 13:24:41 -0400 Subject: [PATCH] fix: pass type to getNetworksByType --- ui/apps/dashboard/App.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/apps/dashboard/App.svelte b/ui/apps/dashboard/App.svelte index 0b29ba5..41f8c83 100644 --- a/ui/apps/dashboard/App.svelte +++ b/ui/apps/dashboard/App.svelte @@ -18,7 +18,7 @@ const types = await networkClient.getTypes(); for (const type of types) { - types[type] = await networkClient.getNetworksByType(); + types[type] = await networkClient.getNetworksByType(type); } });