Add room size setting, constraint management with grouped color-coded tags

This commit is contained in:
Ian Gulliver
2026-02-15 18:01:52 -08:00
parent 737e83f629
commit 68f5719357
5 changed files with 277 additions and 10 deletions

View File

@@ -56,6 +56,7 @@ export async function api(method, path, body) {
if (!res.ok) {
throw new Error(await res.text());
}
if (res.status === 204) return null;
return res.json();
}