diff --git a/homeassistant/components/reolink/config_flow.py b/homeassistant/components/reolink/config_flow.py index d8caff9f120..be897a69d7d 100644 --- a/homeassistant/components/reolink/config_flow.py +++ b/homeassistant/components/reolink/config_flow.py @@ -123,7 +123,10 @@ class ReolinkFlowHandler(ConfigFlow, domain=DOMAIN): """Dialog that informs the user that reauth is required.""" if user_input is not None: return await self.async_step_user() - return self.async_show_form(step_id="reauth_confirm") + placeholders = {"name": self.context["title_placeholders"]["name"]} + return self.async_show_form( + step_id="reauth_confirm", description_placeholders=placeholders + ) async def async_step_dhcp( self, discovery_info: dhcp.DhcpServiceInfo