Fix malformed user input error on MJPEG config flow (#108058)

This commit is contained in:
Cody C
2024-01-15 21:41:44 +13:00
committed by GitHub
parent dd2527db5b
commit 5cc1a761dd
@@ -54,7 +54,7 @@ def async_get_schema(
if show_name:
schema = {
vol.Optional(CONF_NAME, default=defaults.get(CONF_NAME)): str,
vol.Required(CONF_NAME, default=defaults.get(CONF_NAME)): str,
**schema,
}