feat(F-170): completed feature

This commit is contained in:
chattie
2026-08-22 19:13:31 +02:00
parent 34f36ae253
commit 8f02d1c6cc
12 changed files with 53 additions and 27 deletions

View File

@@ -36,6 +36,7 @@ async function request<T>(method: string, path: string, body?: unknown): Promise
);
}
if (res.status === 204) return undefined as T;
return res.json() as Promise<T>;
}