chore(ui): ignore type error in unfinished features

This commit is contained in:
Johannes Kirschbauer
2025-03-29 16:45:05 +01:00
parent 40ae510075
commit 5b294e7651

View File

@@ -11,6 +11,8 @@ export async function get_iwd_service(base_path: string, machine_name: string) {
if (r.status == "error") { if (r.status == "error") {
return null; return null;
} }
// @FIXME: Clean this up once we implement the feature
// @ts-expect-error: This doesn't check currently
const inventory: Inventory = r.data; const inventory: Inventory = r.data;
const instance_key = instance_name(machine_name); const instance_key = instance_name(machine_name);