test(#310): break compile to test copilot fix flow
Some checks failed
Build and Push to ACR / Build and Push (push) Failing after 47s

This commit is contained in:
2026-05-07 21:10:21 +00:00
parent a9f574ec6e
commit 75a18723c8

View File

@@ -41,7 +41,7 @@ public class ItemsController {
Item item = new Item(id,
body.getOrDefault("name", "unnamed"),
body.getOrDefault("description", ""));
store.put(id, item);
store.put(id, item)
return item;
}