From ddd8083302e2ccf6154e62b8538137215078c732 Mon Sep 17 00:00:00 2001 From: starkillerOG Date: Tue, 25 Jun 2024 10:37:42 +0200 Subject: [PATCH] Fix translation error in Reolink reauth flow (#120385) --- homeassistant/components/reolink/config_flow.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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