From 74741c763492b5b98e8cc15f5a81b3f1d092074a Mon Sep 17 00:00:00 2001 From: Jan Bouwhuis Date: Tue, 30 May 2023 19:37:07 +0200 Subject: [PATCH] Fix imap advanced settings not shown (#93813) --- homeassistant/components/imap/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/imap/config_flow.py b/homeassistant/components/imap/config_flow.py index 3a7f3d9d7bd..4f8f8090aca 100644 --- a/homeassistant/components/imap/config_flow.py +++ b/homeassistant/components/imap/config_flow.py @@ -177,7 +177,7 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN): return self.async_create_entry(title=title, data=user_input) - schema = self.add_suggested_values_to_schema(CONFIG_SCHEMA, user_input) + schema = self.add_suggested_values_to_schema(schema, user_input) return self.async_show_form(step_id="user", data_schema=schema, errors=errors) async def async_step_reauth(self, entry_data: Mapping[str, Any]) -> FlowResult: