We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddb40cb commit c8c6eddCopy full SHA for c8c6edd
homeassistant/components/smlight/config_flow.py
@@ -217,9 +217,5 @@ async def _async_complete_entry(
217
user_input[CONF_HOST] = self._host
218
219
assert info.model is not None
220
- title = (
221
- self.context.get("title_placeholders", {}).get(CONF_NAME)
222
- or self._device_name
223
- or info.model
224
- )
+ title = self._device_name or info.model
225
return self.async_create_entry(title=title, data=user_input)
0 commit comments