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 Franck Nijhof
parent ed31adc6db
commit 70492a80cc
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3

View File

@ -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,
}