From 4b7043d075645b844e07a957fe75e5a3c3ce8ec4 Mon Sep 17 00:00:00 2001 From: thekiwismarthome Date: Wed, 25 Mar 2026 08:34:50 +1300 Subject: [PATCH] feat: product match review step when adding ingredients to SLM shopping list --- custom_components/shopping_list_manager/websocket/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/shopping_list_manager/websocket/handlers.py b/custom_components/shopping_list_manager/websocket/handlers.py index c66d76b..7ca7f5c 100644 --- a/custom_components/shopping_list_manager/websocket/handlers.py +++ b/custom_components/shopping_list_manager/websocket/handlers.py @@ -472,7 +472,7 @@ def websocket_get_items( vol.Required("type"): WS_TYPE_ITEMS_ADD, vol.Required("list_id"): str, vol.Required("name"): str, - vol.Required("category_id"): str, + vol.Optional("category_id", default="other"): str, vol.Optional("product_id"): str, vol.Optional("quantity", default=1): vol.Coerce(float), vol.Optional("unit", default="units"): str,