fix: pass type to getNetworksByType

This commit is contained in:
Derrick Hammer 2023-07-25 13:24:41 -04:00
parent 7a3d1f81b5
commit 2c9bda7301
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
});
</script>