From c763d23cbb01d7f7e374dd422fce253f05d6497c Mon Sep 17 00:00:00 2001 From: Mick Vleeshouwer Date: Mon, 28 Mar 2022 08:23:25 -0700 Subject: [PATCH] Fix reauth message in Overkiz integration (#68787) --- homeassistant/components/overkiz/config_flow.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/homeassistant/components/overkiz/config_flow.py b/homeassistant/components/overkiz/config_flow.py index f35941d6773..520a61f27fd 100644 --- a/homeassistant/components/overkiz/config_flow.py +++ b/homeassistant/components/overkiz/config_flow.py @@ -161,6 +161,10 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN): self.hass.config_entries.async_get_entry(self.context["entry_id"]), ) + self.context["title_placeholders"] = { + "gateway_id": self._config_entry.unique_id + } + self._default_user = self._config_entry.data[CONF_USERNAME] self._default_hub = self._config_entry.data[CONF_HUB]